summaryrefslogtreecommitdiff
path: root/poezio/core/handlers.py
diff options
context:
space:
mode:
authorlumi <lumi@pew.im>2018-05-23 23:08:57 +0200
committerMaxime “pep” Buquet <pep@bouah.net>2019-12-27 18:56:27 +0100
commit2ff48b7adf3e022e6809ce59f6429a387f0f3ffa (patch)
tree76f4e691517c621c0400b29367f177670a50c820 /poezio/core/handlers.py
parentebbdbc2cbdc6d0aeaf7c4b1ea87af5049882564a (diff)
downloadpoezio-2ff48b7adf3e022e6809ce59f6429a387f0f3ffa.tar.gz
poezio-2ff48b7adf3e022e6809ce59f6429a387f0f3ffa.tar.bz2
poezio-2ff48b7adf3e022e6809ce59f6429a387f0f3ffa.tar.xz
poezio-2ff48b7adf3e022e6809ce59f6429a387f0f3ffa.zip
Expand the status command, make decryption work, put a hack into the core so I can handle messages without bodies.
Diffstat (limited to 'poezio/core/handlers.py')
-rw-r--r--poezio/core/handlers.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index fc5938f3..8f2f2584 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -271,6 +271,14 @@ class HandlerCore:
return
self.on_normal_message(message)
+ def on_encrypted_message(self, message):
+ """
+ When receiving an encrypted message
+ """
+ if message["body"]:
+ return # Already being handled by on_message.
+ self.on_message(message)
+
def on_error_message(self, message):
"""
When receiving any message with type="error"