X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcore.cpp;h=bb13e886736ccb9eadeed8af627fee69d094e68a;hp=ec19aaa7b22a520c99552f478ef6c08825134323;hb=d643c4259f24929a2019264180d353b5b4f8939d;hpb=f77a0b720ed58a2b68876b9320742b81b6df871f diff --git a/src/core/core.cpp b/src/core/core.cpp index ec19aaa7..bb13e886 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -191,7 +191,7 @@ void Core::init() // Not entirely sure what is 'legacy' about the above, but it seems to be the way things work! QVariantMap authSettings = cs.authSettings().toMap(); - initAuthenticator(authSettings.value("Authenticator").toString(), authSettings.value("ConnectionProperties").toMap()); + initAuthenticator(authSettings.value("Authenticator").toString(), authSettings.value("AuthProperties").toMap()); if (Quassel::isOptionSet("select-backend") || Quassel::isOptionSet("select-authenticator")) { if (Quassel::isOptionSet("select-backend")) { @@ -1098,7 +1098,7 @@ void Core::saveAuthenticatorSettings(const QString &backend, const QVariantMap & { QVariantMap dbsettings; dbsettings["Authenticator"] = backend; - dbsettings["ConnectionProperties"] = settings; + dbsettings["AuthProperties"] = settings; CoreSettings().setAuthSettings(dbsettings); }