From 26262f4ce45000826d6da2803eadcdd569d96a4a Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sat, 12 May 2018 23:34:22 +0200 Subject: [PATCH] Also respect "enable twitch ignored users" setting --- src/providers/twitch/twitchmessagebuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/twitchmessagebuilder.cpp b/src/providers/twitch/twitchmessagebuilder.cpp index 4ec686b1e..760979dcc 100644 --- a/src/providers/twitch/twitchmessagebuilder.cpp +++ b/src/providers/twitch/twitchmessagebuilder.cpp @@ -76,7 +76,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(); for (const auto &user : app->accounts->Twitch.getCurrent()->getIgnores()) {