diff options
author | George Hazan <george.hazan@gmail.com> | 2024-10-22 20:19:59 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-10-22 20:19:59 +0300 |
commit | 57f3aa3dbcefdd94a4f26a71adccfe8ebe988eab (patch) | |
tree | be658fd51528b072202ec70f319cd9c2e7b12b2a | |
parent | acbe9c08e949be95b5549d716232ff7a58785528 (diff) |
compilation fix
-rw-r--r-- | plugins/TabSRMM/src/chat_tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat_tools.cpp b/plugins/TabSRMM/src/chat_tools.cpp index f9686fa2da..c985382e57 100644 --- a/plugins/TabSRMM/src/chat_tools.cpp +++ b/plugins/TabSRMM/src/chat_tools.cpp @@ -268,7 +268,7 @@ BOOL DoSoundsFlashPopupTrayStuff(SESSION_INFO *si, GCEVENT *gce, BOOL bHighlight // if group chat is always muted, we don't play sounds & flash window
if (iMuteMode == CHATMODE_MUTE)
- return;
+ return true;
auto sound = si->getSoundName(gce->iType);
if (dat) {
|