From 0ec7fe9c6ba163588f33da410e78538cfc2f49a4 Mon Sep 17 00:00:00 2001 From: Alexander Bersenev Date: Tue, 19 Jun 2018 16:55:55 +0500 Subject: [PATCH] remove the note about fixme, it looks telegram fixed it from the server side --- mtprotoproxy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mtprotoproxy.py b/mtprotoproxy.py index b98d2cb..05c2a64 100755 --- a/mtprotoproxy.py +++ b/mtprotoproxy.py @@ -356,7 +356,6 @@ class MTProtoIntermediateFrameStreamReader(LayeredStreamReaderBase): class MTProtoIntermediateFrameStreamWriter(LayeredStreamWriterBase): def write(self, data, extra={}): if extra.get("SIMPLE_ACK"): - # fixme: it seems the connection on android closes here return self.upstream.write(data) else: return self.upstream.write(int.to_bytes(len(data), 4, 'little') + data)