Fix renaming completed files

Check whether the file is already downloaded before appending QB_EXT to
filename.

Closes #8039.
This commit is contained in:
Chocobo1 2018-04-12 13:57:57 +08:00
parent 1055cc0f45
commit 898239a42e
No known key found for this signature in database
GPG key ID: 210D9C873253A68C

View file

@ -712,7 +712,10 @@ void PropertiesWidget::renameSelectedFile()
newName.chop(QB_EXT.size());
const QString oldFileName = m_torrent->fileName(fileIndex);
const QString oldFilePath = m_torrent->filePath(fileIndex);
const QString newFileName = newName + (BitTorrent::Session::instance()->isAppendExtensionEnabled() ? QB_EXT : QString());
const bool useFilenameExt = BitTorrent::Session::instance()->isAppendExtensionEnabled()
&& (m_torrent->filesProgress()[fileIndex] != 1);
const QString newFileName = newName + (useFilenameExt ? QB_EXT : QString());
const QString newFilePath = oldFilePath.leftRef(oldFilePath.size() - oldFileName.size()) + newFileName;
if (oldFileName == newFileName) {