From e57265016eacaa3c592d57882040b9ba566a5134 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Mon, 6 Jan 2020 10:27:40 +0100 Subject: [PATCH] Skip NoOp events --- fbchat/_client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fbchat/_client.py b/fbchat/_client.py index 9c9d85f..3bac889 100644 --- a/fbchat/_client.py +++ b/fbchat/_client.py @@ -2437,6 +2437,10 @@ class Client(object): msg=delta, ) + # Skip "no operation" events + elif delta_class == "NoOp": + pass + # Group call started/ended elif delta_type == "rtc_call_log": thread_id, thread_type = getThreadIdAndThreadType(metadata)