mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
fix(filters): enable IsScene parsing for value 1 (#676)
This commit is contained in:
parent
b7e43dd13f
commit
3713985dcc
1 changed files with 1 additions and 1 deletions
|
@ -479,7 +479,7 @@ func (r *Release) MapVars(def *IndexerDefinition, varMap map[string]string) erro
|
|||
}
|
||||
|
||||
if scene, err := getStringMapValue(varMap, "scene"); err == nil {
|
||||
r.IsScene = StringEqualFoldMulti(scene, "true", "yes")
|
||||
r.IsScene = StringEqualFoldMulti(scene, "true", "yes", "1")
|
||||
}
|
||||
|
||||
// set origin. P2P, SCENE, O-SCENE and Internal
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue