1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Merge pull request #13614 from glassez/resumedata

Prevent resume data to be saved for removed torrent
This commit is contained in:
Vladimir Golovnev 2020-10-23 10:13:51 +03:00 committed by GitHub
commit 82602b51bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1788,12 +1788,18 @@ bool Session::deleteTorrent(const InfoHash &hash, const DeleteOption deleteOptio
} }
// Remove it from torrent resume directory // Remove it from torrent resume directory
const QDir resumeDataDir(m_resumeFolderPath); const QString resumedataFile = QString::fromLatin1("%1.fastresume").arg(torrent->hash());
QStringList filters; const QString metadataFile = QString::fromLatin1("%1.torrent").arg(torrent->hash());
filters << QString::fromLatin1("%1.*").arg(torrent->hash()); #if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
const QStringList files = resumeDataDir.entryList(filters, QDir::Files, QDir::Unsorted); QMetaObject::invokeMethod(m_resumeDataSavingManager, [this, resumedataFile, metadataFile]()
for (const QString &file : files) {
Utils::Fs::forceRemove(resumeDataDir.absoluteFilePath(file)); m_resumeDataSavingManager->remove(resumedataFile);
m_resumeDataSavingManager->remove(metadataFile);
});
#else
QMetaObject::invokeMethod(m_resumeDataSavingManager, "remove", Q_ARG(QString, resumedataFile));
QMetaObject::invokeMethod(m_resumeDataSavingManager, "remove", Q_ARG(QString, metadataFile));
#endif
delete torrent; delete torrent;
return true; return true;