1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

- Not deleting files on hard drive when user is answering no the the 'move to download list' dialog

This commit is contained in:
Christophe Dumez 2008-10-05 11:05:27 +00:00
parent 77f407724d
commit bfaa82ccba

View File

@ -291,7 +291,7 @@ void FinishedTorrents::updateFinishedList(){
} }
else if (reponse == QMessageBox::No) { else if (reponse == QMessageBox::No) {
qDebug("Deleted from the finished"); qDebug("Deleted from the finished");
BTSession->deleteTorrent(hash, true); BTSession->deleteTorrent(hash, false);
} }
continue; continue;
} }