From d4859b675a7d48607fc0d8ce41d3b655c8b3d327 Mon Sep 17 00:00:00 2001 From: 2FWAH <36737818+2FWAH@users.noreply.github.com> Date: Fri, 21 Sep 2018 17:36:16 +0200 Subject: [PATCH] Fix ident for _forcedFetch --- fbchat/client.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fbchat/client.py b/fbchat/client.py index 93c1f2d..66f02a4 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -479,13 +479,13 @@ class Client(object): """ def _forcedFetch(self, thread_id, mid): - j = self.graphql_request(GraphQL(doc_id='1768656253222505', params={ - 'thread_and_message_id': { - 'thread_id': thread_id, - 'message_id': mid - } - })) - return j + j = self.graphql_request(GraphQL(doc_id='1768656253222505', params={ + 'thread_and_message_id': { + 'thread_id': thread_id, + 'message_id': mid + } + })) + return j def fetchThreads(self, thread_location, after=None, limit=None): """