From abb32f700ce7cbabfd05152ef83512ac1a184313 Mon Sep 17 00:00:00 2001 From: iProdigy Date: Sat, 24 Sep 2022 23:16:39 -0700 Subject: [PATCH] chore: fix debug text on non-204 add mod success (#4011) --- src/providers/twitch/api/Helix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/api/Helix.cpp b/src/providers/twitch/api/Helix.cpp index d151da322..b3087b934 100644 --- a/src/providers/twitch/api/Helix.cpp +++ b/src/providers/twitch/api/Helix.cpp @@ -947,7 +947,7 @@ void Helix::addChannelModerator( if (result.status() != 204) { qCWarning(chatterinoTwitch) - << "Success result for deleting chat messages was" + << "Success result for adding a moderator was" << result.status() << "but we only expected it to be 204"; }