Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-04-06 00:30:48 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-04-06 00:30:48 +0300
commit8cd2c5c9e82a081b9a3029672dca635ac54fa88b (patch)
treec4c39071ca5d2075c0190e5fef57ebad3414b784 /httpupload
parentec373e4b008793a48b5d60c9d38c417fa95c25a0 (diff)
[httpupload] Make sure httpupload is last
The oob tag is only added when a body tag exists with the same content. (means not unencrypted) If any encryption plugin is active, there should be no cleartext body. So no oob tag is added to encrypted messages. This patch exists only for the OTR plugin.
Diffstat (limited to 'httpupload')
-rw-r--r--httpupload/httpupload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpupload/httpupload.py b/httpupload/httpupload.py
index 601e079..f85c2c0 100644
--- a/httpupload/httpupload.py
+++ b/httpupload/httpupload.py
@@ -88,7 +88,7 @@ class HttpuploadPlugin(GajimPlugin):
'agent-info-received': (
ged.PRECORE, self.handle_agent_info_received),
'stanza-message-outgoing': (
- ged.PRECORE, self.handle_outgoing_stanza),
+ 99, self.handle_outgoing_stanza),
'raw-iq-received': (
ged.PRECORE, self.handle_iq_received)}
self.gui_extension_points = {