diff --git a/server/core/torrent.go b/server/core/torrent.go index 286a22c..01eb647 100644 --- a/server/core/torrent.go +++ b/server/core/torrent.go @@ -110,6 +110,10 @@ func SearchMovie(db1 *db.Client, movieId int, checkResolution bool) ([]torznab.R if meta.Year != year && meta.Year != year-1 && meta.Year != year+1 { //year not match continue } + if utils.ContainsIgnoreCase(r.Name, "soundtrack") { + //ignore soundtracks + continue + } filtered = append(filtered, r)