1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-14 02:52:12 +01:00

Fix using external download manager with use defined location setting.

Closes #984
This commit is contained in:
nowrep 2013-08-12 15:32:03 +02:00
parent e75248a335
commit f098f1e1d1

View File

@ -107,6 +107,9 @@ void DownloadFileHelper::handleUnsupportedContent(QNetworkReply* reply, const Do
else if (info.forceChoosingPath) { else if (info.forceChoosingPath) {
optionsDialogAccepted(4); optionsDialogAccepted(4);
} }
else if (m_manager->useExternalManager()) {
optionsDialogAccepted(3);
}
else { else {
optionsDialogAccepted(2); optionsDialogAccepted(2);
} }