This commit is contained in:
Rasmus Karlsson 2024-11-06 17:36:38 +01:00
parent 40490a90fb
commit 8a69861ead
No known key found for this signature in database

View file

@ -507,7 +507,7 @@ void TwitchIrcServer::initialize()
action.reason =
u"matches %1 blocked term%2"_s.arg(
numBlockedTermsMatched,
numBlockedTermsMatched > 1 ? 's'
numBlockedTermsMatched > 1 ? u"s"
: "");
}
else
@ -516,7 +516,7 @@ void TwitchIrcServer::initialize()
u"matches %1 blocked term%2 \"%3\""_s
.arg(numBlockedTermsMatched,
numBlockedTermsMatched > 1
? 's'
? u"s"
: "",
msg.blockedTermsFound.join(
u"\", \""));