From c495317e6520f159c1137aa5fda25a9ac3b93c83 Mon Sep 17 00:00:00 2001 From: cirrux Date: Mon, 1 Jan 2018 23:11:35 -0500 Subject: [PATCH] Fix setTypingStatus to send correctly --- fbchat/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbchat/client.py b/fbchat/client.py index ab09c70..91a8018 100644 --- a/fbchat/client.py +++ b/fbchat/client.py @@ -1248,7 +1248,7 @@ class Client(object): :type thread_type: models.ThreadType :raises: FBchatException if request failed """ - thread_id, thread_type = self._getThread(thread_id, None) + thread_id, thread_type = self._getThread(thread_id, thread_type) data = { "typ": status.value,