From b3bb7e2d3e2496f4e815cecbda185da230e722f6 Mon Sep 17 00:00:00 2001 From: Mm2PL Date: Mon, 9 Aug 2021 00:04:25 +0200 Subject: [PATCH] Make single deletion messages for moderators obey the setting (#3121) Co-authored-by: ALazyMeme Co-authored-by: pajlada --- CHANGELOG.md | 1 + src/Application.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c62bf8bd..e6cb014f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Minor: Remove TwitchEmotes.com attribution and the open/copy options when right-clicking a Twitch Emote. (#2214, #3136) - Minor: Strip leading @ and trailing , from username in /user and /usercard commands. (#3143) - Minor: Display a system message when reloading subscription emotes to match BTTV/FFZ behavior (#3135) +- Bugfix: Notifications for moderators about other moderators deleting messages can now be disabled. (#3121) - Bugfix: Moderation mode and active filters are now preserved when opening a split as a popup. (#3113, #3130) - Bugfix: Fixed a bug that caused all badge highlights to use the same color. (#3132, #3134) - Dev: Renamed CMake's build option `USE_SYSTEM_QT5KEYCHAIN` to `USE_SYSTEM_QTKEYCHAIN`. (#3103) diff --git a/src/Application.cpp b/src/Application.cpp index f0f79c42f..4de581187 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -286,7 +286,7 @@ void Application::initPubsub() auto chan = this->twitch.server->getChannelOrEmptyByID(action.roomID); - if (chan->isEmpty()) + if (chan->isEmpty() || getSettings()->hideDeletionActions) { return; }