From ac827bcfab69acd936cd5954c401869f78652f15 Mon Sep 17 00:00:00 2001 From: Timon Ringwald Date: Mon, 15 Aug 2022 16:15:39 +0200 Subject: [PATCH] show debug info in checkTorrents --- 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 }