fixed bug

This commit is contained in:
SwissCorePy 2021-07-01 18:54:39 +02:00
parent 3a4cf47def
commit c7b360e982
1 changed files with 1 additions and 2 deletions

View File

@ -158,10 +158,9 @@ class ChatMemberUpdated(JsonDeserializable):
"""
old: Dict = self.old_chat_member.__dict__
new: Dict = self.new_chat_member.__dict__
old.pop('user') # User should always be the same
new.pop('user') # No need to include
dif = {}
for key in new:
if key == 'user': continue
if new[key] != old[key]:
dif[key] = [old[key], new[key]]
return dif