diff src/plugins/plugin_misc_text_commands.py @ 2128:aa94f33fd2ad

plugin otr: various improvments: - messageSend trigger now use pre_xml_treatments so it doesn't block other triggers of higher priority - text commands now use a very high priority, as it is local command and should not be blocked in most of cases - new otrState signal, to send state change to frontends - history is not skipped anymore, a future option may change this behaviour - OTR trigger are skipped on groupchat messages - context_manager is now in client instead of being global to plugin - removed fixPotr as it is fixed upstream note triggers should be improved for encryption methods, as skipping an encrypter may break security, but putting it in top priority may break nice features. fix bug 170
author Goffi <goffi@goffi.org>
date Wed, 01 Feb 2017 21:44:24 +0100
parents 98672e35d2f5
children 1d3f73e065e1
line wrap: on
line diff
--- a/src/plugins/plugin_misc_text_commands.py	Tue Jan 31 22:35:59 2017 +0100
+++ b/src/plugins/plugin_misc_text_commands.py	Wed Feb 01 21:44:24 2017 +0100
@@ -59,7 +59,8 @@
     def __init__(self, host):
         log.info(_("Text commands initialization"))
         self.host = host
-        host.trigger.add("messageSend", self.messageSendTrigger)
+        # this is internal command, so we set high priority
+        host.trigger.add("messageSend", self.messageSendTrigger, priority=1000000)
         self._commands = {}
         self._whois = []
         self.registerTextCommands(self)