From bed23694c4d2bfa7d896805bef18044e87cee9cd Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sun, 25 Mar 2018 17:19:50 +0000 Subject: [PATCH] Fixes to channel difference --- src/danog/MadelineProto/MTProtoTools/UpdateHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php b/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php index 38e10b26..59dc3cd0 100644 --- a/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php @@ -191,8 +191,8 @@ trait UpdateHandler } catch (\danog\MadelineProto\PTSException $e) { \danog\MadelineProto\Logger::log($e->getMessage()); unset($this->channels_state[$channel]); - $this->load_channel_state($channel)['sync_loading'] = false; - return false;//$this->get_channel_difference($channel); + + return; //$this->get_channel_difference($channel); } finally { $this->postpone_updates = false; $this->load_channel_state($channel)['sync_loading'] = false;