mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
fix up to date match condition
This commit is contained in:
parent
3377baad75
commit
8a58dfdf13
1 changed files with 1 additions and 1 deletions
|
|
@ -189,7 +189,7 @@ impl TorrentMaps {
|
||||||
if l != L {
|
if l != L {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if info_hashes.iter().any(|i| i.0 != b[..l]) {
|
if !info_hashes.iter().any(|i| i.0 == b[..l]) {
|
||||||
return Ok(false);
|
return Ok(false);
|
||||||
}
|
}
|
||||||
t += 1
|
t += 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue