Browse Source

BUGFIX: Fixed pause state toggle for paused and checking torrents

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
73c247fe10
  1. 1
      TODO
  2. 2
      src/bittorrent.cpp

1
TODO

@ -82,6 +82,7 @@ beta5->beta6 changelog: @@ -82,6 +82,7 @@ beta5->beta6 changelog:
- BUGFIX: Showing checking progress for paused torrents too
- BUGFIX: Fixed progress column sorting on startup
- 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: Fixed Pause/Start action in lists context menus
- BUGFIX: Improved ETA calculation

2
src/bittorrent.cpp

@ -150,6 +150,8 @@ bool bittorrent::isPaused(QString hash) const{ @@ -150,6 +150,8 @@ bool bittorrent::isPaused(QString hash) const{
qDebug("/!\\ Error: Invalid handle");
return true;
}
if(torrentsToPauseAfterChecking.contains(hash))
return true;
return h.is_paused();
}

Loading…
Cancel
Save