mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-04-06 18:24:12 +03:00
Fix still broken log for broken packets
This commit is contained in:
parent
6cd96389c0
commit
2922e8df11
|
@ -190,14 +190,15 @@ class Connection:
|
|||
if packet_len <= 12:
|
||||
__log__.error('Read invalid packet length %d, '
|
||||
'reading data left:', packet_len)
|
||||
while True:
|
||||
data = b''
|
||||
try:
|
||||
data = b''
|
||||
try:
|
||||
while True:
|
||||
data += self.read(1)
|
||||
except TimeoutError:
|
||||
break
|
||||
finally:
|
||||
__log__.error(repr(data))
|
||||
except TimeoutError:
|
||||
pass
|
||||
finally:
|
||||
__log__.error(repr(data))
|
||||
|
||||
# Connection reset and hope it's fixed after
|
||||
self.conn.close()
|
||||
raise ConnectionResetError()
|
||||
|
|
Loading…
Reference in New Issue
Block a user