From 5fc754520abd3a2f534ec106e5dcce8d3c8f9418 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 15 Apr 2007 17:00:16 +0000 Subject: [PATCH] - small fix in finished list --- src/FinishedTorrents.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp index 38864d928..bf9a2b3d7 100644 --- a/src/FinishedTorrents.cpp +++ b/src/FinishedTorrents.cpp @@ -242,7 +242,10 @@ void FinishedTorrents::updateFinishedList(){ qDebug("Problem: This torrent is not valid in finished list"); continue; } - if(h.is_paused()) continue; + if(h.is_paused()){ + h.resume(); + continue; + } torrent_status torrentStatus = h.status(); if(torrentStatus.state == torrent_status::downloading) { // What are you doing here, go back to download tab!