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:
parent
5de5ac99a0
commit
ea7237b90e
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user