Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2022-09-25 20:49:06 +0300
committerwurstsalat <mailtrash@posteo.de>2022-09-25 23:55:26 +0300
commitb06c21e101823f7273672f63b930aacce0d0ac72 (patch)
treecf669a7e9ff565bd6b580c0133410034b30891d4
parent05457d58384591e34c46140523a4f39b2d9d5e86 (diff)
fix: Notifications: React to incoming group chat messages
Fixes #11161
-rw-r--r--gajim/gtk/chat_stack.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gajim/gtk/chat_stack.py b/gajim/gtk/chat_stack.py
index 8c5789411..defa7d57d 100644
--- a/gajim/gtk/chat_stack.py
+++ b/gajim/gtk/chat_stack.py
@@ -145,6 +145,7 @@ class ChatStack(Gtk.Stack, EventHelper):
self.register_events([
('message-received', 85, self._on_message_received),
+ ('gc-message-received', 85, self._on_message_received),
('muc-disco-update', 85, self._on_muc_disco_update),
])