Also handle muc_nickchange for /tell.

Fixes #3349.
This commit is contained in:
Emmanuel Gil Peyrot 2017-11-23 18:13:58 +00:00
parent b705aba4e2
commit d3023b438f

View file

@ -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 = {}