From d64d1c10d2e3173abd2f84c2867602c7400597f0 Mon Sep 17 00:00:00 2001 From: Timon Ringwald Date: Mon, 15 Aug 2022 16:15:39 +0200 Subject: [PATCH] TRUSTED_ONLY fixed --- torrent_filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrent_filter.go b/torrent_filter.go index bc17f9e..4e97b66 100644 --- a/torrent_filter.go +++ b/torrent_filter.go @@ -34,7 +34,7 @@ func HasEssentialProperties(torrent *model.ParsedTorrent) bool { return false } - if TrustedOnly && torrent.Torrent.Trusted { + if TrustedOnly && !torrent.Torrent.Trusted { return false }