From 990ec4f5af89ca9b229e2f0a36ea02480442f2dc Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Wed, 8 Sep 2010 09:03:43 +0200
Subject: [PATCH] prevent a traceback when trying to redraw a contact that is
 no more in our roster. Fixes #5876

---
 src/roster_window.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/roster_window.py b/src/roster_window.py
index 117aa56f1f..2f5d9664eb 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -1110,7 +1110,9 @@ class RosterWindow:
 
         contact_instances = gajim.contacts.get_contacts(account, jid)
         contact = gajim.contacts.get_highest_prio_contact_from_contacts(
-                contact_instances)
+            contact_instances)
+        if not contact:
+            return False
 
         child_iters = self._get_contact_iter(jid, account, contact, self.model)
         if not child_iters:
-- 
GitLab