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

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Brötzmann <mailtrash@posteo.de>2020-01-18 23:59:20 +0300
committerDaniel Brötzmann <mailtrash@posteo.de>2020-01-19 00:34:35 +0300
commit0f9150a8106006ce61c605e0ec14d7db2d509a53 (patch)
tree5555eabd39047626b93aada275203a474447ec91 /length_notifier/length_notifier.py
parente6d9790d0090f416d560eb23cf59b1de2755a847 (diff)
[length_notifier] Enable plugin for group chats
Diffstat (limited to 'length_notifier/length_notifier.py')
-rw-r--r--length_notifier/length_notifier.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/length_notifier/length_notifier.py b/length_notifier/length_notifier.py
index 729c884..5c1dab3 100644
--- a/length_notifier/length_notifier.py
+++ b/length_notifier/length_notifier.py
@@ -42,7 +42,8 @@ class LengthNotifierPlugin(GajimPlugin):
self.config_dialog = LengthNotifierPluginConfigDialog(self)
self.gui_extension_points = {
- 'chat_control' : (self.connect_with_chat_control,
+ 'chat_control_base': (
+ self.connect_with_chat_control,
self.disconnect_from_chat_control)
}