diff options
author | fiaxh <git@lightrise.org> | 2019-10-20 00:14:52 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2019-10-22 01:23:08 +0200 |
commit | c032ab00ecc9d2b0c5d2fdbc5bd622a5406f691c (patch) | |
tree | 4ad3d3380d5de2775945f7e73c7e9ba9067c6d38 /plugins | |
parent | 394862dbd31a938be8e953e0edaa73d2f4fb9769 (diff) | |
download | dino-c032ab00ecc9d2b0c5d2fdbc5bd622a5406f691c.tar.gz dino-c032ab00ecc9d2b0c5d2fdbc5bd622a5406f691c.zip |
Don't send delivery recipts or chat states for own messages
fixes #631
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/omemo/src/protocol/stream_module.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/omemo/src/protocol/stream_module.vala b/plugins/omemo/src/protocol/stream_module.vala index a456440a..fdfca30c 100644 --- a/plugins/omemo/src/protocol/stream_module.vala +++ b/plugins/omemo/src/protocol/stream_module.vala @@ -211,7 +211,7 @@ public class StreamModule : XmppStreamModule { } } identity_key = bundle.identity_key; - signed_pre_key_id = bundle.signed_pre_key_id;; + signed_pre_key_id = bundle.signed_pre_key_id; signed_pre_key = bundle.signed_pre_key; } |