tmijs / tmi.js

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

Some channels return "room_mods" even when there's no moderators. #480

Closed Ravenbtw closed 2 years ago

Ravenbtw commented 2 years ago

Actual behaviour: It gives an error. IRC returns "The moderators of this channel are:" and nothing else.

Expected behaviour: It returns an empty array or says there's no moderators.

Error log:

const mods = msg.split(': ')[1].toLowerCase()
                                              ^
TypeError: Cannot read property 'toLowerCase' of undefined

Server configuration

Ravenbtw commented 2 years ago

Might wanna add a check to see if "msg.split(': ')[1]" exists on line 285.