diff --git a/Telegram/SourceFiles/core/update_checker.cpp b/Telegram/SourceFiles/core/update_checker.cpp index ede786e8c0..e87665bae4 100644 --- a/Telegram/SourceFiles/core/update_checker.cpp +++ b/Telegram/SourceFiles/core/update_checker.cpp @@ -1249,9 +1249,13 @@ void Updater::start(bool forceWait) { startImplementation( &_httpImplementation, std::make_unique(_testing)); - startImplementation( - &_mtpImplementation, - std::make_unique(_session, _testing)); + + // AyuGram: removed + if (false) { + startImplementation( + &_mtpImplementation, + std::make_unique(_session, _testing)); + } _checking.fire({}); } else {