You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a user types "Login authentication failed" in chat, regardless of if the IRC connection has actually failed, it will trigger the fatal logging and return from the active loop.
A suggested fix could be to check to make sure it was not sent via a PRIVMSG
if text.find('Login authentication failed') > 0 and text.find('PRIVMSG') == -1:
The text was updated successfully, but these errors were encountered:
Twitch-Python/twitch/chat/irc.py
Lines 35 to 37 in 60b52bd
If a user types "Login authentication failed" in chat, regardless of if the IRC connection has actually failed, it will trigger the fatal logging and return from the active loop.
A suggested fix could be to check to make sure it was not sent via a PRIVMSG
if text.find('Login authentication failed') > 0 and text.find('PRIVMSG') == -1:
The text was updated successfully, but these errors were encountered: