You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (_enforceHttps && QUrl(pollEndpoint).scheme() != QStringLiteral("https")) {
102
-
qCWarning(lcFlow2auth) << "Can not poll endpoint because the returned url" << pollEndpoint << "does not start with https";
103
-
emit result(Error, tr("The polling URL does not start with HTTPS despite the login URL started with HTTPS. Login will not be possible because this might be a security issue. Please contact your administrator."));
104
-
return;
105
-
}
106
98
loginUrl = json["login"].toString();
107
99
}
108
100
109
-
if (reply->error() != QNetworkReply::NoError || jsonParseError.error != QJsonParseError::NoError
0 commit comments