From 711bf497b80a5d01d4e8a7e7aab15d31089750a6 Mon Sep 17 00:00:00 2001 From: thekindlyone Date: Sun, 7 Aug 2016 02:38:20 +0530 Subject: [PATCH] added clientid to data in _pullMessage to fix {u'reason': 110, u't': u'refresh', u'seq': 0} in content --- fbchat/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fbchat/client.py b/fbchat/client.py index 40e5c71..f2fc605 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -411,7 +411,8 @@ class Client(object): data = { "msgs_recv": 0, "sticky_token": sticky, - "sticky_pool": pool + "sticky_pool": pool, + "clientid": self.client_id, } r = self._get(StickyURL, data)