ignore messages with no type attribute
This commit is contained in:
parent
e1dadf48c1
commit
ac53b4537c
1 changed files with 2 additions and 11 deletions
|
@ -787,20 +787,11 @@ class ConnectionHandlersZeroconf(ConnectionVcard, ConnectionBytestream):
|
||||||
subject = subject)
|
subject = subject)
|
||||||
self.dispatch('MSG', (frm, msgtxt, tim, encrypted, mtype, subject,
|
self.dispatch('MSG', (frm, msgtxt, tim, encrypted, mtype, subject,
|
||||||
chatstate, msg_id, composing_jep, user_nick))
|
chatstate, msg_id, composing_jep, user_nick))
|
||||||
else: # it's single message
|
elif mtype == 'normal': # it's single message
|
||||||
if self.name not in no_log_for and jid not in no_log_for and msgtxt:
|
if self.name not in no_log_for and jid not in no_log_for and msgtxt:
|
||||||
gajim.logger.write('single_msg_recv', frm, msgtxt, tim = tim,
|
gajim.logger.write('single_msg_recv', frm, msgtxt, tim = tim,
|
||||||
subject = subject)
|
subject = subject)
|
||||||
if invite is not None:
|
if invite:
|
||||||
item = invite.getTag('invite')
|
|
||||||
jid_from = item.getAttr('from')
|
|
||||||
if jid_from == None:
|
|
||||||
jid_from = frm
|
|
||||||
reason = item.getTagData('reason')
|
|
||||||
item = invite.getTag('password')
|
|
||||||
password = invite.getTagData('password')
|
|
||||||
self.dispatch('GC_INVITATION',(frm, jid_from, reason, password))
|
|
||||||
else:
|
|
||||||
self.dispatch('MSG', (frm, msgtxt, tim, encrypted, 'normal',
|
self.dispatch('MSG', (frm, msgtxt, tim, encrypted, 'normal',
|
||||||
subject, chatstate, msg_id, composing_jep, user_nick))
|
subject, chatstate, msg_id, composing_jep, user_nick))
|
||||||
# END messageCB
|
# END messageCB
|
||||||
|
|
Loading…
Add table
Reference in a new issue