mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-27 06:54:20 +00:00
Don't count paused torrents for the autoshutdown. Closes #1280.
This commit is contained in:
parent
a92148424f
commit
ceba1dc734
@ -730,8 +730,9 @@ bool QBtSession::hasDownloadingTorrents() const {
|
|||||||
for ( ; torrentIT != torrentITend; ++torrentIT) {
|
for ( ; torrentIT != torrentITend; ++torrentIT) {
|
||||||
if (torrentIT->is_valid()) {
|
if (torrentIT->is_valid()) {
|
||||||
try {
|
try {
|
||||||
const torrent_status::state_t state = torrentIT->status().state;
|
const torrent_status status = torrentIT->status();
|
||||||
if (state != torrent_status::finished && state != torrent_status::seeding)
|
if (status.state != torrent_status::finished && status.state != torrent_status::seeding
|
||||||
|
&& !status.paused)
|
||||||
return true;
|
return true;
|
||||||
} catch(std::exception) {}
|
} catch(std::exception) {}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user