mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-08 08:32:31 -06:00
BUGFIX: Fix download first/last pieces state reporting
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
* unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.9.6
|
||||||
|
- BUGFIX: Fix download first/last pieces state reporting
|
||||||
|
|
||||||
* Sat Feb 18 2012 - Christophe Dumez <chris@qbittorrent.org> - v2.9.5
|
* Sat Feb 18 2012 - Christophe Dumez <chris@qbittorrent.org> - v2.9.5
|
||||||
- BUGFIX: Fix crash when disabling then reenabling RSS
|
- BUGFIX: Fix crash when disabling then reenabling RSS
|
||||||
- BUGFIX: Fix duplicate torrent detection when adding a magnet link
|
- BUGFIX: Fix duplicate torrent detection when adding a magnet link
|
||||||
|
|||||||
@@ -169,7 +169,6 @@ bool QTorrentHandle::first_last_piece_first() const {
|
|||||||
if(misc::isPreviewable(ext) && torrent_handle::file_priority(index) > 0) {
|
if(misc::isPreviewable(ext) && torrent_handle::file_priority(index) > 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
++index;
|
|
||||||
}
|
}
|
||||||
if(index >= torrent_handle::get_torrent_info().num_files()) return false;
|
if(index >= torrent_handle::get_torrent_info().num_files()) return false;
|
||||||
file_entry media_file = torrent_handle::get_torrent_info().file_at(index);
|
file_entry media_file = torrent_handle::get_torrent_info().file_at(index);
|
||||||
|
|||||||
Reference in New Issue
Block a user