HttpCredentials::slotAuthentication: fix comment

The recent revert did no fix the comment
This commit is contained in:
Olivier Goffart 2016-01-07 14:58:02 +01:00
Родитель 868d4c781a
Коммит 81b7798ac2
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -308,9 +308,8 @@ void HttpCredentials::slotWriteJobDone(QKeychain::Job *job)
void HttpCredentials::slotAuthentication(QNetworkReply* reply, QAuthenticator* authenticator)
{
Q_UNUSED(authenticator)
// we cannot use QAuthenticator, because it sends username and passwords with latin1
// instead of utf8 encoding. Instead, we send it manually. Thus, if we reach this signal,
// those credentials were invalid and we terminate.
// Because of issue #4326, we need to set the login and password manually at every requests
// Thus, if we reach this signal, those credentials were invalid and we terminate.
qDebug() << "Stop request: Authentication failed for " << reply->url().toString();
reply->setProperty(authenticationFailedC, true);
reply->close();