mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
Replace "movie" with "group" in scene is missing criterion (#6204)
* Add support for "group" value in scene is-missing filter criterion * Replace movie with group in scene is missing criterion
This commit is contained in:
parent
1dccecc39c
commit
d70ff551d4
2 changed files with 2 additions and 2 deletions
|
|
@ -319,7 +319,7 @@ func (qb *sceneFilterHandler) isMissingCriterionHandler(isMissing *string) crite
|
||||||
f.addWhere("galleries_join.scene_id IS NULL")
|
f.addWhere("galleries_join.scene_id IS NULL")
|
||||||
case "studio":
|
case "studio":
|
||||||
f.addWhere("scenes.studio_id IS NULL")
|
f.addWhere("scenes.studio_id IS NULL")
|
||||||
case "movie":
|
case "movie", "group":
|
||||||
sceneRepository.groups.join(f, "groups_join", "scenes.id")
|
sceneRepository.groups.join(f, "groups_join", "scenes.id")
|
||||||
f.addWhere("groups_join.scene_id IS NULL")
|
f.addWhere("groups_join.scene_id IS NULL")
|
||||||
case "performers":
|
case "performers":
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ export const SceneIsMissingCriterionOption = new IsMissingCriterionOption(
|
||||||
"date",
|
"date",
|
||||||
"galleries",
|
"galleries",
|
||||||
"studio",
|
"studio",
|
||||||
"movie",
|
"group",
|
||||||
"performers",
|
"performers",
|
||||||
"tags",
|
"tags",
|
||||||
"stash_id",
|
"stash_id",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue