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
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":