Fix resolution check on media info filter

This commit is contained in:
Ben Adrian Sarmiento
2024-06-20 05:27:41 +02:00
parent 6e07701f9e
commit bc04737ca7
4 changed files with 14 additions and 66 deletions

View File

@@ -90,7 +90,7 @@ func (t *TorrentManager) refreshTorrents(initialRun bool) {
// new torrents
t.workerPool.Submit(func() {
if !t.hasFFprobe {
if !t.hasFFprobe || !t.Config.ShouldAutoAnalyzeNewTorrents() {
return
}
freshAccessKeys.Difference(oldKeys).Each(func(accessKey string) bool {