diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-11-23 18:13:58 +0000 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-11-23 18:13:58 +0000 |
commit | d3023b438fc0811f777ed93219bdef662ba133bf (patch) | |
tree | dc944d52c7fc2afde127470e13fe8335e78df6f6 /plugins | |
parent | b705aba4e2eca82433b7143bc7bfe2f5ef2d13d4 (diff) | |
download | poezio-d3023b438fc0811f777ed93219bdef662ba133bf.tar.gz poezio-d3023b438fc0811f777ed93219bdef662ba133bf.tar.bz2 poezio-d3023b438fc0811f777ed93219bdef662ba133bf.tar.xz poezio-d3023b438fc0811f777ed93219bdef662ba133bf.zip |
Also handle muc_nickchange for /tell.
Fixes #3349.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/tell.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/tell.py b/plugins/tell.py index 04fc12cd..870fc12e 100644 --- a/plugins/tell.py +++ b/plugins/tell.py @@ -45,6 +45,7 @@ class Plugin(BasePlugin): usage='', help='List currently queued messages') self.api.add_event_handler('muc_join', self.on_join) + self.api.add_event_handler('muc_nickchange', self.on_join) # {tab -> {nick -> [messages]} self.tabs = {} |