Add missing type to _store_own_updates

This commit is contained in:
Lonami Exo 2024-04-28 10:16:56 +02:00
parent 881bfaac5c
commit 1974b663a2

View File

@ -715,6 +715,10 @@ class MTProtoSender:
)
upd._self_outgoing = True
self._updates_queue.put_nowait(upd)
elif obj.CONSTRUCTOR_ID == _tl.messages.InvitedUsers.CONSTRUCTOR_ID:
obj.updates._self_outgoing = True
self._updates_queue.put_nowait(obj.updates)
except AttributeError:
pass