From 02db720813e2494821c8601c689cb1a9c26404d1 Mon Sep 17 00:00:00 2001 From: Daniel Cepeda Date: Wed, 26 Oct 2016 14:26:42 -0700 Subject: [PATCH] other_user_fbid logic was wrong --- fbchat/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fbchat/client.py b/fbchat/client.py index 777de09..c7c9e5c 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -264,7 +264,8 @@ class Client(object): 'manual_retry_cnt' : '0', 'signatureID' : getSignatureID(), 'has_attachment' : image_id != None, - 'other_user_fbid' : recipient_id, + 'other_user_fbid' : user_id, + 'thread_fbid': thread_id, 'specific_to_list[0]' : 'fbid:' + str(recipient_id), 'specific_to_list[1]' : 'fbid:' + str(self.uid),