feat: send messages over Helix by default (#5607)

This commit is contained in:
nerix
2024-09-29 11:52:37 +02:00
committed by GitHub
parent d0bcf35fdc
commit ef4be6cdac
3 changed files with 11 additions and 4 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 false;
return true;
}
}