mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-18 07:07:08 +02:00
Fix launching with autoupdates disabled.
This commit is contained in:
parent
3ef45f5431
commit
63cdda2df7
1 changed files with 2 additions and 1 deletions
|
@ -17,6 +17,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "mainwindow.h"
|
||||
#include "main/main_account.h"
|
||||
#include "main/main_session.h"
|
||||
#include "main/main_accounts.h"
|
||||
#include "info/info_memento.h"
|
||||
#include "info/settings/info_settings_widget.h"
|
||||
#include "window/window_session_controller.h"
|
||||
|
@ -1391,7 +1392,7 @@ Updater::~Updater() {
|
|||
|
||||
UpdateChecker::UpdateChecker()
|
||||
: _updater(GetUpdaterInstance()) {
|
||||
if (IsAppLaunched()) {
|
||||
if (IsAppLaunched() && Core::App().accounts().started()) {
|
||||
const auto &account = Core::App().activeAccount();
|
||||
if (account.sessionExists()) {
|
||||
_updater->setMtproto(&account.session());
|
||||
|
|
Loading…
Add table
Reference in a new issue