From 48aa86e3c415f81ccf4c29d4413a0cc04534a406 Mon Sep 17 00:00:00 2001 From: jamesbunton Date: Mon, 24 Jul 2006 13:09:50 +0000 Subject: [PATCH] Fixed exception with adding contacts before the session was ready. git-svn-id: http://delx.cjb.net/svn/pymsnt/trunk@203 55fbd22a-6204-0410-b2f0-b6c764c7e90a committer: jamesbunton --- src/legacy/glue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/legacy/glue.py b/src/legacy/glue.py index 12b2df0..c278079 100644 --- a/src/legacy/glue.py +++ b/src/legacy/glue.py @@ -405,13 +405,13 @@ class LegacyConnection(msn.MSNConnection): def loggedIn(self): LogEvent(INFO, self.jabberID) - self.session.ready = True def listSynchronized(self): LogEvent(INFO, self.jabberID) self.session.sendPresence(to=self.jabberID, fro=config.jid) self.legacyList.syncJabberLegacyLists() self.listSynced = True + self.session.ready = True #self.legacyList.flushSubscriptionBuffer() def ourStatusChanged(self, statusCode, screenName, personal): -- 2.39.2