diff options
author | mathieui <mathieui@mathieui.net> | 2021-01-21 19:54:22 +0100 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2021-01-24 12:50:08 +0100 |
commit | e1720c8e2378dfae3a165cf250036e3443dd7174 (patch) | |
tree | 85489731751da9076cb8b38d99d9e2d9ce1a4880 | |
parent | 98bd4c241ebc5e988cfa865f3ca61c9eb63bc0a5 (diff) | |
download | poezio-e1720c8e2378dfae3a165cf250036e3443dd7174.tar.gz poezio-e1720c8e2378dfae3a165cf250036e3443dd7174.tar.bz2 poezio-e1720c8e2378dfae3a165cf250036e3443dd7174.tar.xz poezio-e1720c8e2378dfae3a165cf250036e3443dd7174.zip |
Also receive self-message events in plugins
fixes omemo messages from another of our connected clients
-rw-r--r-- | poezio/core/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index 80c8330f..1fffaec1 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -387,7 +387,7 @@ class HandlerCore: remote_nick = conversation.get_nick() conversation.last_remote_message = datetime.now() - self.core.events.trigger('conversation_msg', message, conversation) + self.core.events.trigger('conversation_msg', message, conversation) if not message['body']: return |