we can now receive the gc subject
This commit is contained in:
parent
efc5bdba68
commit
9a446f3e32
|
@ -198,8 +198,6 @@ class Connection:
|
||||||
def _messageCB(self, con, msg):
|
def _messageCB(self, con, msg):
|
||||||
"""Called when we receive a message"""
|
"""Called when we receive a message"""
|
||||||
msgtxt = msg.getBody()
|
msgtxt = msg.getBody()
|
||||||
if not msg.getTag('body'): #no <body>
|
|
||||||
return
|
|
||||||
mtype = msg.getType()
|
mtype = msg.getType()
|
||||||
tim = msg.getTimestamp()
|
tim = msg.getTimestamp()
|
||||||
tim = time.strptime(tim, '%Y%m%dT%H:%M:%S')
|
tim = time.strptime(tim, '%Y%m%dT%H:%M:%S')
|
||||||
|
@ -230,9 +228,13 @@ class Connection:
|
||||||
if subject:
|
if subject:
|
||||||
self.dispatch('GC_SUBJECT', (str(msg.getFrom()), subject))
|
self.dispatch('GC_SUBJECT', (str(msg.getFrom()), subject))
|
||||||
else:
|
else:
|
||||||
|
if not msg.getTag('body'): #no <body>
|
||||||
|
return
|
||||||
self.dispatch('GC_MSG', (str(msg.getFrom()), msgtxt, tim))
|
self.dispatch('GC_MSG', (str(msg.getFrom()), msgtxt, tim))
|
||||||
gajim.logger.write('gc', msgtxt, str(msg.getFrom()), tim = tim)
|
gajim.logger.write('gc', msgtxt, str(msg.getFrom()), tim = tim)
|
||||||
else:
|
else:
|
||||||
|
if not msg.getTag('body'): #no <body>
|
||||||
|
return
|
||||||
gajim.logger.write('incoming', msgtxt, str(msg.getFrom()), tim = tim)
|
gajim.logger.write('incoming', msgtxt, str(msg.getFrom()), tim = tim)
|
||||||
self.dispatch('MSG', (str(msg.getFrom()), msgtxt, tim, encrypted))
|
self.dispatch('MSG', (str(msg.getFrom()), msgtxt, tim, encrypted))
|
||||||
# END messageCB
|
# END messageCB
|
||||||
|
|
Loading…
Reference in New Issue