mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
fix: return correct bitfield when fully downloaded (#2799)
Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
parent
04a4f4a10c
commit
53dc3a41b4
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ std::vector<uint8_t> tr_bitfield::raw() const
|
|||
|
||||
if (hasAll())
|
||||
{
|
||||
setAllTrue(std::data(raw), std::size(raw));
|
||||
setAllTrue(std::data(raw), bit_count_);
|
||||
}
|
||||
|
||||
return raw;
|
||||
|
|
Loading…
Reference in a new issue