mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Also respect "enable twitch ignored users" setting
This commit is contained in:
parent
e4439a3f10
commit
6768853d92
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ bool TwitchMessageBuilder::isIgnored() const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->tags.contains("user-id")) {
|
if (app->settings->enableTwitchIgnoredUsers && this->tags.contains("user-id")) {
|
||||||
auto sourceUserID = this->tags.value("user-id").toString();
|
auto sourceUserID = this->tags.value("user-id").toString();
|
||||||
|
|
||||||
for (const auto &user : app->accounts->Twitch.getCurrent()->getIgnores()) {
|
for (const auto &user : app->accounts->Twitch.getCurrent()->getIgnores()) {
|
||||||
|
|
Loading…
Reference in a new issue