Show
Ignore:
Timestamp:
07/16/07 22:06:21 (3 years ago)
Author:
roidelapluie
Message:

add continue support

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • gajim/branches/chat2muc/src/gajim.py

    r83 r85  
    12061206 
    12071207        def handle_event_gc_invitation(self, account, array): 
    1208                 #('GC_INVITATION', (room_jid, jid_from, reason, password)) 
     1208                #('GC_INVITATION', (room_jid, jid_from, reason, password, is_continued)) 
    12091209                jid = gajim.get_jid_without_resource(array[1]) 
    12101210                room_jid = array[0] 
    12111211                if helpers.allow_popup_window(account) or not self.systray_enabled: 
    12121212                        dialogs.InvitationReceivedDialog(account, room_jid, jid, array[3], 
    1213                                 array[2]) 
     1213                                array[2], is_continued=array[3]) 
    12141214                        return 
    12151215