diff --git a/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php b/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php index bc0bf866..f17c109d 100644 --- a/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php +++ b/src/danog/MadelineProto/MTProtoTools/UpdateHandler.php @@ -124,7 +124,7 @@ trait UpdateHandler public function get_channel_difference($channel) { - if (!$this->settings['updates']['handle_updates'] || $this->getting_state) { + if (!$this->settings['updates']['handle_updates']) { return; } if (!$this->get_channel_state($channel)['sync_loading']) { @@ -225,7 +225,7 @@ trait UpdateHandler public function get_updates_difference() { - if (!$this->settings['updates']['handle_updates'] || $this->getting_state) { + if (!$this->settings['updates']['handle_updates']) { return; } if (!$this->get_update_state()['sync_loading']) {