mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
BUGFIX: Fixed pause state toggle for paused and checking torrents
This commit is contained in:
parent
bd84cb197f
commit
73c247fe10
2 changed files with 3 additions and 0 deletions
1
TODO
1
TODO
|
@ -82,6 +82,7 @@ beta5->beta6 changelog:
|
||||||
- BUGFIX: Showing checking progress for paused torrents too
|
- BUGFIX: Showing checking progress for paused torrents too
|
||||||
- BUGFIX: Fixed progress column sorting on startup
|
- BUGFIX: Fixed progress column sorting on startup
|
||||||
- BUGFIX: Prevent downloadFromUrl flooding
|
- BUGFIX: Prevent downloadFromUrl flooding
|
||||||
|
- BUGFIX: Fixed pause state toggle for paused and checking torrents
|
||||||
- BUGFIX: Made finished list context menu more similar to the download list one
|
- BUGFIX: Made finished list context menu more similar to the download list one
|
||||||
- BUGFIX: Fixed Pause/Start action in lists context menus
|
- BUGFIX: Fixed Pause/Start action in lists context menus
|
||||||
- BUGFIX: Improved ETA calculation
|
- BUGFIX: Improved ETA calculation
|
||||||
|
|
|
@ -150,6 +150,8 @@ bool bittorrent::isPaused(QString hash) const{
|
||||||
qDebug("/!\\ Error: Invalid handle");
|
qDebug("/!\\ Error: Invalid handle");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if(torrentsToPauseAfterChecking.contains(hash))
|
||||||
|
return true;
|
||||||
return h.is_paused();
|
return h.is_paused();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue