fixed small bug in dispatcher

This commit is contained in:
Jefry Lagrange 2011-06-06 23:43:13 -04:00
parent 89cd4b2e45
commit 2090b9b900
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ class XMPPDispatcher(PlugIn):
self.getAnID, self.Event, self.send]
# Let the dispatcher know if there is support for stream management
self.supports_sm = False
self.sm = None
def getAnID(self):
global outgoingID
@ -535,7 +535,7 @@ class XMPPDispatcher(PlugIn):
if self._owner._registered_name and not stanza.getAttr('from'):
stanza.setAttr('from', self._owner._registered_name)
if self.supports_sm:
if self.sm:
self.sm.uqueue.append(stanza)
self.sm.out_h = self.sm.out_h + 1
if len(self.sm.uqueue) > self.sm.max_queue: