From 280f9e4047cdbc001e0e33103d8188a5b818b696 Mon Sep 17 00:00:00 2001 From: nerix Date: Mon, 25 Nov 2024 20:48:03 +0100 Subject: [PATCH] revert: use helix as the default chat send protocol (#5736) --- CHANGELOG.md | 1 - src/providers/twitch/TwitchIrcServer.cpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22bb267c..dbd58525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,7 +123,6 @@ - Dev: Refactored legacy Unicode zero-width-joiner replacement. (#5594) - Dev: The JSON output when copying a message (SHIFT + right-click) is now more extensive. (#5600) - Dev: Added more tests for message building. (#5598, #5654, #5656, #5671) -- Dev: Twitch messages are now sent using Twitch's Helix API instead of IRC by default. (#5607) - Dev: `GIFTimer` is no longer initialized in tests. (#5608) - Dev: Emojis now use flags instead of a set of strings for capabilities. (#5616) - Dev: Move plugins to Sol2. (#5622, #5682) diff --git a/src/providers/twitch/TwitchIrcServer.cpp b/src/providers/twitch/TwitchIrcServer.cpp index 901ac052..d8438c07 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -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; } }