revert: use helix as the default chat send protocol (#5736)

This commit is contained in:
nerix
2024-11-25 20:48:03 +01:00
committed by GitHub
parent e69581cb4a
commit 280f9e4047
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -132,14 +132,14 @@ bool shouldSendHelixChat()
{
switch (getSettings()->chatSendProtocol)
{
case ChatSendProtocol::Default:
case ChatSendProtocol::Helix:
return true;
case ChatSendProtocol::Default:
case ChatSendProtocol::IRC:
return false;
default:
assert(false && "Invalid chat protocol value");
return true;
return false;
}
}