mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-24 07:51:44 +00:00
Fix unhandled exception in case the connection is already closed
This commit is contained in:
parent
316c426429
commit
dde01cc9b9
@ -33,7 +33,11 @@ class TCP(socket.socket):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
|
try:
|
||||||
self.shutdown(socket.SHUT_RDWR)
|
self.shutdown(socket.SHUT_RDWR)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
finally:
|
||||||
super().close()
|
super().close()
|
||||||
|
|
||||||
def recvall(self, length: int) -> bytes or None:
|
def recvall(self, length: int) -> bytes or None:
|
||||||
|
Loading…
Reference in New Issue
Block a user