From 6768853d92351af5cfc92106d5165f0c2dc27743 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 738e9e053..1926f7620 100644 --- a/src/providers/twitch/twitchmessagebuilder.cpp +++ b/src/providers/twitch/twitchmessagebuilder.cpp @@ -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(); for (const auto &user : app->accounts->Twitch.getCurrent()->getIgnores()) {