mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
Update tcp_transport.py
Counter before send, in case of fail send, will not result error 500 random_id_duplicate
This commit is contained in:
parent
6a32c6cd7a
commit
38bf460930
|
@ -27,9 +27,9 @@ class TcpTransport:
|
|||
|
||||
crc = crc32(writer.get_bytes())
|
||||
writer.write_int(crc, signed=False)
|
||||
|
||||
self.tcp_client.write(writer.get_bytes())
|
||||
|
||||
self.send_counter += 1
|
||||
self.tcp_client.write(writer.get_bytes())
|
||||
|
||||
def receive(self, timeout=timedelta(seconds=5)):
|
||||
"""Receives a TCP message (tuple(sequence number, body)) from the connected peer.
|
||||
|
|
Loading…
Reference in New Issue
Block a user