From bfaa82ccba279f098979ccc03e34928bc0fd0021 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 5 Oct 2008 11:05:27 +0000 Subject: [PATCH] - Not deleting files on hard drive when user is answering no the the 'move to download list' dialog --- src/FinishedTorrents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp index dccb28101..60acbcdca 100644 --- a/src/FinishedTorrents.cpp +++ b/src/FinishedTorrents.cpp @@ -291,7 +291,7 @@ void FinishedTorrents::updateFinishedList(){ } else if (reponse == QMessageBox::No) { qDebug("Deleted from the finished"); - BTSession->deleteTorrent(hash, true); + BTSession->deleteTorrent(hash, false); } continue; }