mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 14:57:52 +00:00
- small fix in finished list
This commit is contained in:
parent
43bced2e04
commit
5fc754520a
@ -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!
|
||||
|
Loading…
Reference in New Issue
Block a user