Fix: removed RPC error handling from get_me

This commit is contained in:
Serhii Dylda 2020-10-10 20:10:29 +02:00
parent 7c8d09048f
commit 47a912150d

View File

@ -407,7 +407,7 @@ class UpdateMethods:
# fine, we will just retry next time anyway. # fine, we will just retry next time anyway.
try: try:
await self.get_me(input_peer=True) await self.get_me(input_peer=True)
except (OSError, errors.RPCError): except OSError:
pass pass
built = EventBuilderDict(self, update, others) built = EventBuilderDict(self, update, others)