mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
oopsie 2
This commit is contained in:
parent
8a69861ead
commit
56ba1ca2ee
|
@ -505,21 +505,22 @@ void TwitchIrcServer::initialize()
|
||||||
if (hideBlockedTerms)
|
if (hideBlockedTerms)
|
||||||
{
|
{
|
||||||
action.reason =
|
action.reason =
|
||||||
u"matches %1 blocked term%2"_s.arg(
|
u"matches %1 blocked term%2"_s
|
||||||
numBlockedTermsMatched,
|
.arg(numBlockedTermsMatched)
|
||||||
numBlockedTermsMatched > 1 ? u"s"
|
.arg(numBlockedTermsMatched > 1
|
||||||
: "");
|
? u"s"
|
||||||
|
: u"");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
action.reason =
|
action.reason =
|
||||||
u"matches %1 blocked term%2 \"%3\""_s
|
u"matches %1 blocked term%2 \"%3\""_s
|
||||||
.arg(numBlockedTermsMatched,
|
.arg(numBlockedTermsMatched)
|
||||||
numBlockedTermsMatched > 1
|
.arg(numBlockedTermsMatched > 1
|
||||||
? u"s"
|
? u"s"
|
||||||
: "",
|
: u"")
|
||||||
msg.blockedTermsFound.join(
|
.arg(msg.blockedTermsFound.join(
|
||||||
u"\", \""));
|
u"\", \""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue