Get chat back to work. Well except it get very confused

if users have the same ip address.

Dan I commented out the service deserialization in BrowserShell
because it was not really working (also there was a few typos in
that code)
This commit is contained in:
Marco Pesenti Gritti
2006-06-18 03:00:23 -04:00
parent bc43e25e10
commit 51ea9eedba
6 changed files with 31 additions and 24 deletions
+1 -1
View File
@@ -575,7 +575,7 @@ class PresenceService(gobject.GObject):
def get_buddy_by_address(self, address):
for buddy in self._buddies.values():
if buddy.get_address == address:
if buddy.get_address() == address:
return buddy
return None