fix: return correct bitfield when fully downloaded (#2799)

Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
David Beinder 2022-03-22 20:01:07 +01:00 committed by GitHub
parent 04a4f4a10c
commit 53dc3a41b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;