jabber_mirror: Fix anti-looping

(imported from commit 5b0ee18b3ec4fd73912fde83b14083e77940ab6e)
This commit is contained in:
Zev Benjamin 2014-02-21 13:32:48 -05:00
parent f18525acd1
commit afea89d717

View file

@ -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__':