From ec49a7b05d59a6a207d552c8d4110c00714646d9 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 26 Jun 2013 22:49:18 +0200 Subject: Ignore errors on PEP publishing (fix #2322) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (since we can’t do anything about them anyway) --- src/core.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/core.py') diff --git a/src/core.py b/src/core.py index c574370c..d1b0d7e5 100644 --- a/src/core.py +++ b/src/core.py @@ -2297,7 +2297,7 @@ class Core(object): text = args[1] else: text = None - self.xmpp.plugin['xep_0107'].publish_mood(mood, text, block=False) + self.xmpp.plugin['xep_0107'].publish_mood(mood, text, callback=dumb_callback, block=False) def completion_mood(self, the_input): """Completion for /mood""" @@ -2326,7 +2326,7 @@ class Core(object): text = args[2] if specific and specific not in pep.ACTIVITIES[general]: return self.information('%s is not a correct value for an activity' % specific, 'Error') - self.xmpp.plugin['xep_0108'].publish_activity(general, specific, text, block=False) + self.xmpp.plugin['xep_0108'].publish_activity(general, specific, text, callback=dumb_callback, block=False) def command_gaming(self, arg): """ @@ -2340,7 +2340,7 @@ class Core(object): address = args[1] else: address = None - return self.xmpp.plugin['xep_0196'].publish_gaming(name=name, server_address=address, block=False) + return self.xmpp.plugin['xep_0196'].publish_gaming(name=name, server_address=address, callback=dumb_callback, block=False) def completion_activity(self, the_input): """Completion for /activity""" @@ -3468,7 +3468,7 @@ class Core(object): show=self.status.show) if config.get('enable_user_nick', 'true') != 'false': - self.xmpp.plugin['xep_0172'].publish_nick(nick=self.own_nick) + self.xmpp.plugin['xep_0172'].publish_nick(nick=self.own_nick, callback=dumb_callback, block=False) self.xmpp.plugin['xep_0115'].update_caps() ### Other handlers ### @@ -3675,4 +3675,6 @@ def replace_key_with_bound(key): bind = key return bind +def dumb_callback(*args, **kwargs): + pass -- cgit v1.2.3