reshow login dialog in case account login fails

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2024-09-16 16:15:36 +03:00
parent bee59c904a
commit 75756b49c3
No known key found for this signature in database
GPG Key ID: 55EF5DA53DB36318

View File

@ -35,11 +35,10 @@ void LoginWizardPage::on_pushButton_clicked()
if (account) { if (account) {
APPLICATION->accounts()->addAccount(account); APPLICATION->accounts()->addAccount(account);
APPLICATION->accounts()->setDefaultAccount(account); APPLICATION->accounts()->setDefaultAccount(account);
} if (wizard()->currentId() == wizard()->pageIds().last()) {
wizard()->accept();
if (wizard()->currentId() == wizard()->pageIds().last()) { } else {
wizard()->accept(); wizard()->next();
} else { }
wizard()->next();
} }
} }