Skip to content

Commit

Permalink
Enable auto login by default
Browse files Browse the repository at this point in the history
  • Loading branch information
javierllorente committed Nov 22, 2020
1 parent b0f4008 commit 792290d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ void MainWindow::readAuthSettings()
settings.setValue("ApiUrl", defaultApiUrl);
}
obs->setApiUrl(apiUrl);
if (settings.value("AutoLogin").toBool()) {
if (settings.value("AutoLogin", true).toBool()) {
Credentials *credentials = new Credentials(this);
connect(credentials, SIGNAL(errorReadingPassword(QString)),
this, SLOT(slotErrorReadingPassword(QString)));
Expand Down

0 comments on commit 792290d

Please sign in to comment.