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:
WithoutPants 2025-10-29 11:12:42 +11:00 committed by GitHub
parent 1dccecc39c
commit d70ff551d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -319,7 +319,7 @@ func (qb *sceneFilterHandler) isMissingCriterionHandler(isMissing *string) crite
f.addWhere("galleries_join.scene_id IS NULL")
case "studio":
f.addWhere("scenes.studio_id IS NULL")
case "movie":
case "movie", "group":
sceneRepository.groups.join(f, "groups_join", "scenes.id")
f.addWhere("groups_join.scene_id IS NULL")
case "performers":

View file

@ -32,7 +32,7 @@ export const SceneIsMissingCriterionOption = new IsMissingCriterionOption(
"date",
"galleries",
"studio",
"movie",
"group",
"performers",
"tags",
"stash_id",