forked from premiere/premiere-libtorrent
fix missed function call in previous check-in
This commit is contained in:
parent
b28810a92e
commit
288f203a92
|
@ -826,7 +826,7 @@ namespace libtorrent
|
||||||
// to be a seed after all
|
// to be a seed after all
|
||||||
if (!seed) force_recheck();
|
if (!seed) force_recheck();
|
||||||
m_num_verified = 0;
|
m_num_verified = 0;
|
||||||
m_verified.free();
|
m_verified.clear();
|
||||||
}
|
}
|
||||||
bool all_verified() const
|
bool all_verified() const
|
||||||
{ return int(m_num_verified) == m_torrent_file->num_pieces(); }
|
{ return int(m_num_verified) == m_torrent_file->num_pieces(); }
|
||||||
|
|
Loading…
Reference in New Issue