diff options
author | Maxime Buquet <pep@bouah.net> | 2020-04-22 18:42:41 +0200 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2020-04-22 18:42:41 +0200 |
commit | 42968c07d303918f7c5a5d999c1cdbbbdf8cb8d3 (patch) | |
tree | 6e9e2e6fad2f15afc49b4e5a973573c30bfa2449 | |
parent | 570c5262bdb05c7ee77bc4bfa373b223dcc2feec (diff) | |
parent | c93de19fde63ab1e7470ee2a02407d4c3119383b (diff) | |
download | poezio-42968c07d303918f7c5a5d999c1cdbbbdf8cb8d3.tar.gz poezio-42968c07d303918f7c5a5d999c1cdbbbdf8cb8d3.tar.bz2 poezio-42968c07d303918f7c5a5d999c1cdbbbdf8cb8d3.tar.xz poezio-42968c07d303918f7c5a5d999c1cdbbbdf8cb8d3.zip |
Merge branch 'muc-reflections' into 'master'
[ci skip] Add TODOs re #3314
See merge request poezio/poezio!84
-rw-r--r-- | poezio/core/handlers.py | 9 | ||||
-rw-r--r-- | poezio/tabs/muctab.py | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index 1078916f..a68b6986 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -736,6 +736,15 @@ class HandlerCore: tmp_dir = get_image_cache() body = xhtml.get_body_from_message_stanza( message, use_xhtml=use_xhtml, extract_images_to=tmp_dir) + + # TODO: #3314. Is this a MUC reflection? + # Is this an encrypted message? Is so ignore. + # It is not possible in the OMEMO case to decrypt these messages + # since we don't encrypt for our own device (something something + # forward secrecy), but even for non-FS encryption schemes anyway + # messages shouldn't have changed after a round-trip to the room. + # Otherwire replace the matching message we sent. + if not body: return diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index 92dc1e51..9543e4c4 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -1716,6 +1716,7 @@ class MucTab(ChatTab): self.text_win.refresh() self.input.refresh() return + # TODO: #3314. Display outgoing MUC message. self.set_last_sent_message(msg, correct=correct) msg.send() self.chat_state = needed |