Skip NoOp events

This commit is contained in:
Mads Marquart
2020-01-06 10:27:40 +01:00
parent cf4c22898c
commit e57265016e

View File

@@ -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)