From 71a768db72893c1913afc781919003940474a590 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Sat, 12 May 2007 21:49:49 +0000
Subject: [PATCH] don't count real jid as fake jid

---
 src/vcard.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/vcard.py b/src/vcard.py
index 4829b0b82b..38a208097e 100644
--- a/src/vcard.py
+++ b/src/vcard.py
@@ -453,7 +453,7 @@ class VcardWindow:
 		self.fill_status_label()
 
 		gajim.connections[self.account].request_vcard(self.contact.jid,
-			self.gc_contact is not None)
+			(self.gc_contact is not None and not self.gc_contact.jid))
 
 	def on_close_button_clicked(self, widget):
 		self.window.destroy()
-- 
GitLab