diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-05-01 18:54:17 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-05-01 18:54:17 +0200 |
commit | 06962a6f4bc3aaf2e62ab8893629348f1c2bab48 (patch) | |
tree | aa91e70752031d4cc76d49141d23aed539ba2f11 | |
parent | c7c358799ade8f40dc0810d6430e83afd0c532f5 (diff) | |
download | poezio-06962a6f4bc3aaf2e62ab8893629348f1c2bab48.tar.gz poezio-06962a6f4bc3aaf2e62ab8893629348f1c2bab48.tar.bz2 poezio-06962a6f4bc3aaf2e62ab8893629348f1c2bab48.tar.xz poezio-06962a6f4bc3aaf2e62ab8893629348f1c2bab48.zip |
Fix #3518: Add no-store hint to CSN
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/tabs/basetabs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py index 706172ed..9026e8be 100644 --- a/poezio/tabs/basetabs.py +++ b/poezio/tabs/basetabs.py @@ -697,6 +697,7 @@ class ChatTab(Tab): msg['type'] = self.message_type msg['chat_state'] = state self.chat_state = state + msg['no-store'] = True msg.send() return True |