TRUSTED_ONLY fixed

This commit is contained in:
Timon Ringwald 2022-08-15 16:15:39 +02:00
parent 8677a0e9c5
commit d64d1c10d2

View File

@ -34,7 +34,7 @@ func HasEssentialProperties(torrent *model.ParsedTorrent) bool {
return false
}
if TrustedOnly && torrent.Torrent.Trusted {
if TrustedOnly && !torrent.Torrent.Trusted {
return false
}