gempir

Results 69 comments of gempir

Had this issue before as well. From experience it's best and maybe even recommended? To Set the UserAccessToken before you do that request and then clear it again after. Maybe...

Listen to the Room state with the room state event hook.

IRC doesn't support that as far as I am aware joining non existent or banned channels just does nothing or maybe fires a room state Incase of the ban not...

Sure. It can be implemented I'm not opposed to such a feature. It's a pretty hefty one though and I don't think I will spend any time on it personally,...

First draft https://github.com/gempir/go-twitch-irc/pull/144 Not ready to be tested or used at all though. Lot's of tests failing

I updated the parsing tests. Would like to see some more with like 1 mod/vip. Also maybe some like just a random string and testing what happens. I also for...

Great start for a test, if possible please try also writing fake values from the server so the client starts reading and parsing them. Also the linter has some issues...

Also I tried it out and I'm just getting timeouts? ``` client.OnPrivateMessage(func(message twitch.PrivateMessage) { fmt.Println(message.Message) mods, err1 := client.GetMods("gempir", time.Second*5) if err1 != nil { log.Println(err1) } log.Println(mods) vips, err2...