1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

[Downloads] Make sure to always add slash '/' between path and filename

This commit is contained in:
nowrep 2014-02-10 19:57:02 +01:00
parent 5de5ac99a0
commit ea7237b90e

View File

@ -252,11 +252,11 @@ void DownloadFileHelper::optionsDialogAccepted(int finish)
}
}
else {
fileNameChoosed(m_downloadPath + m_h_fileName, true);
fileNameChoosed(m_downloadPath + QLatin1Char('/') + m_h_fileName, true);
}
}
else {
fileNameChoosed(mApp->tempPath() + "/" + m_h_fileName, true);
fileNameChoosed(mApp->tempPath() + QLatin1Char('/') + m_h_fileName, true);
}
}