Call onTyping on "typ" or "ttyp" messages

FB returns "typ" for ONE-TO-ONE conversations and "ttyp" for GROUP conversations.
This commit is contained in:
2FWAH
2018-06-03 22:33:15 +02:00
committed by Mads Marquart
parent cebe7a28c0
commit 1f359f2a72

View File

@@ -1529,7 +1529,7 @@ class Client(object):
self.onInbox(unseen=m["unseen"], unread=m["unread"], recent_unread=m["recent_unread"], msg=m)
# Typing
elif mtype == "ttyp":
elif mtype == "typ" or mtype == "ttyp":
author_id = str(m.get("from"))
thread_id = str(m.get("thread_fbid"))
if thread_id == self.uid: