jabber_mirror: Fix anti-looping
(imported from commit 5b0ee18b3ec4fd73912fde83b14083e77940ab6e)
This commit is contained in:
parent
f18525acd1
commit
afea89d717
|
@ -158,7 +158,7 @@ class ZulipToJabberBot(zulip.Client):
|
|||
mto = jabber_recipient,
|
||||
mbody = msg['content'],
|
||||
mtype = 'groupchat')
|
||||
outgoing['thread'] == u'\u1B80'
|
||||
outgoing['thread'] = u'\u1B80'
|
||||
outgoing.send()
|
||||
|
||||
def private_message(self, msg):
|
||||
|
@ -172,7 +172,7 @@ class ZulipToJabberBot(zulip.Client):
|
|||
mto = jabber_recipient,
|
||||
mbody = msg['content'],
|
||||
mtype = 'chat')
|
||||
outgoing['thread'] == u'\u1B80'
|
||||
outgoing['thread'] = u'\u1B80'
|
||||
outgoing.send()
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue