From 0e6dbaf71a9e97860699372d6254f5eca438d14f Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 5 Sep 2021 21:34:47 +0200 Subject: [PATCH] Settings: Fix loading subsonic auth method setting --- src/settings/subsonicsettingspage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/subsonicsettingspage.cpp b/src/settings/subsonicsettingspage.cpp index 3549e86a..bf32589e 100644 --- a/src/settings/subsonicsettingspage.cpp +++ b/src/settings/subsonicsettingspage.cpp @@ -81,7 +81,7 @@ void SubsonicSettingsPage::Load() { ui_->checkbox_download_album_covers->setChecked(s.value("downloadalbumcovers", true).toBool()); ui_->checkbox_server_scrobbling->setChecked(s.value("serversidescrobbling", false).toBool()); - AuthMethod auth_method = static_cast(s.value("auth_method", AuthMethod_MD5).toInt()); + AuthMethod auth_method = static_cast(s.value("authmethod", AuthMethod_MD5).toInt()); switch(auth_method) { case AuthMethod_Hex: ui_->auth_method_hex->setChecked(true);