Changeset 8535 for trunk/src/common/connection_handlers.py
- Timestamp:
- 08/22/07 01:13:03 (17 months ago)
- Files:
-
- 1 modified
-
trunk/src/common/connection_handlers.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/connection_handlers.py
r8505 r8535 1484 1484 if xtag.getNamespace() == common.xmpp.NS_CONFERENCE and not invite: 1485 1485 room_jid = xtag.getAttr('jid') 1486 self.dispatch('GC_INVITATION', (room_jid, frm, '', None)) 1486 is_continued = False 1487 if xtag.getTag('continue'): 1488 is_continued = True 1489 self.dispatch('GC_INVITATION', (room_jid, frm, '', None, 1490 is_continued)) 1487 1491 return 1488 1492 # chatstates - look for chatstate tags in a message if not delayed … … 1575 1579 item = invite.getTag('password') 1576 1580 password = invite.getTagData('password') 1577 self.dispatch('GC_INVITATION',(frm, jid_from, reason, password)) 1581 is_continued = False 1582 if invite.getTag('invite').getTag('continue'): 1583 is_continued = True 1584 self.dispatch('GC_INVITATION',(frm, jid_from, reason, password, 1585 is_continued)) 1578 1586 return 1579 1587 if self.name not in no_log_for and jid not in no_log_for and msgtxt:
