improve decline implementation
This commit is contained in:
parent
1b870be4e7
commit
c42b00702d
2 changed files with 5 additions and 5 deletions
|
@ -1035,10 +1035,6 @@ class ConnectionHandlersBase:
|
|||
self.dispatch_error_message(obj.stanza, obj.msgtxt,
|
||||
obj.session, obj.fjid, obj.timestamp)
|
||||
return True
|
||||
elif obj.mtype == 'groupchat':
|
||||
gajim.nec.push_incoming_event(GcMessageReceivedEvent(None,
|
||||
conn=self, msg_obj=obj))
|
||||
return True
|
||||
elif obj.invite_tag is not None:
|
||||
gajim.nec.push_incoming_event(GcInvitationReceivedEvent(None,
|
||||
conn=self, msg_obj=obj))
|
||||
|
@ -1047,6 +1043,10 @@ class ConnectionHandlersBase:
|
|||
gajim.nec.push_incoming_event(GcDeclineReceivedEvent(None,
|
||||
conn=self, msg_obj=obj))
|
||||
return True
|
||||
elif obj.mtype == 'groupchat':
|
||||
gajim.nec.push_incoming_event(GcMessageReceivedEvent(None,
|
||||
conn=self, msg_obj=obj))
|
||||
return True
|
||||
|
||||
# process and dispatch an error message
|
||||
def dispatch_error_message(self, msg, msgtxt, session, frm, tim):
|
||||
|
|
|
@ -621,7 +621,7 @@ class Interface:
|
|||
if gc_control:
|
||||
gc_control.print_conversation(
|
||||
_('%(jid)s declined the invitation: %(reason)s') % {
|
||||
'jid': obj.room_jid, 'reason': obj.reason}, graphics=False)
|
||||
'jid': obj.jid_from, 'reason': obj.reason}, graphics=False)
|
||||
|
||||
def handle_event_gc_invitation(self, obj):
|
||||
#('GC_INVITATION', (room_jid, jid_from, reason, password, is_continued))
|
||||
|
|
Loading…
Add table
Reference in a new issue