From 1a485318bfc1a3db4cd970785029eeb8b03bf0b3 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 11 Sep 2011 03:32:54 +0200 Subject: Fix a traceback when a contact not yet accepted goes offline --- src/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core.py b/src/core.py index 340cdf8a..4a2cc91f 100644 --- a/src/core.py +++ b/src/core.py @@ -337,7 +337,8 @@ class Core(object): return log.debug('on_got_offline: %s' % presence) resource = contact.get_resource_by_fulljid(jid.full) - assert resource + if not resource: + return # If a resource got offline, display the message in the conversation with this # precise resource. self.add_information_message_to_conversation_tab(jid.full, '\x195%s is \x191offline' % (resource.get_jid().full)) -- cgit v1.2.3