Fix cancelling http/proxy authentication

Closes #1980
remotes/origin/falkon
David Rosca 10 years ago
parent 0269541561
commit f9cdc110be
  1. 2
      src/lib/network/networkmanager.cpp

@ -148,6 +148,7 @@ void NetworkManager::authentication(const QUrl &url, QAuthenticator *auth, QWidg
}
if (dialog->exec() != QDialog::Accepted) {
*auth = QAuthenticator();
delete dialog;
return;
}
@ -206,6 +207,7 @@ void NetworkManager::proxyAuthentication(const QString &proxyHost, QAuthenticato
formLa->addWidget(box);
if (dialog->exec() != QDialog::Accepted) {
*auth = QAuthenticator();
delete dialog;
return;
}

Loading…
Cancel
Save