X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclientauthhandler.cpp;h=7ded71d820396d675a6479c5c94099c19fe76163;hb=07473582d22eddd934ee52127cad2baa11943d59;hp=c8ed7359cf63ebea648b9ca01cad6f866a7dd5e2;hpb=620cd1aa35e05099b3f84400dd33afc207c98244;p=quassel.git diff --git a/src/client/clientauthhandler.cpp b/src/client/clientauthhandler.cpp index c8ed7359..7ded71d8 100644 --- a/src/client/clientauthhandler.cpp +++ b/src/client/clientauthhandler.cpp @@ -303,6 +303,7 @@ void ClientAuthHandler::handle(const ClientRegistered &msg) { _coreConfigured = msg.coreConfigured; _backendInfo = msg.backendInfo; + _authBackendInfo = msg.authBackendInfo; Client::setCoreFeatures(static_cast(msg.coreFeatures)); @@ -321,7 +322,7 @@ void ClientAuthHandler::onConnectionReady() if (!_coreConfigured) { // start wizard - emit startCoreSetup(_backendInfo); + emit startCoreSetup(_backendInfo, _authBackendInfo); } else // TODO: check if we need LoginEnabled login(); @@ -487,7 +488,7 @@ void ClientAuthHandler::onSslErrors() default: qWarning() << "Certificate digest version" << QString(knownDigestVersion) << "is not supported"; } - + if (knownDigest != calculatedDigest) { bool accepted = false; bool permanently = false;