tmijs / tmi.js

💬 Javascript library for the Twitch Messaging Interface. (Twitch.tv)
https://tmijs.com
MIT License
1.55k stars 214 forks source link

Fix moderator tracking for USERSTATE messages #425

Closed Kingdutch closed 4 years ago

Kingdutch commented 4 years ago

The USERSTATE message contains the channel that it's being sent for but this was not being used. Instead it used the this.lastJoined variable. However, this internal variable is only updated after the tracking for moderators is completed.

This results in moderator status being assigned to the wrong channel and will result in client.isMod returning false when called in an onJoin handler (or thereafter).

AlcaDesign commented 4 years ago

Thanks!