mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 14:23:35 -07:00
- Fixed size display for torrent with no filtered files (with libtorrent < v0.13), introduced recently
This commit is contained in:
parent
21be57d06f
commit
a643bd64db
1 changed files with 1 additions and 1 deletions
|
@ -1058,7 +1058,7 @@ size_type GUI::torrentEffectiveSize(QString hash) const{
|
|||
#endif
|
||||
for(unsigned int i=0; i<nbFiles; ++i){
|
||||
#ifndef V_0_13
|
||||
if(!corrupted_pieces_file && !filteredFiles.at(i).toInt())
|
||||
if(corrupted_pieces_file || !filteredFiles.at(i).toInt())
|
||||
#endif
|
||||
#ifdef V_0_13
|
||||
if(h.piece_priority(i) != 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue