mirror of
https://github.com/stashapp/stash.git
synced 2025-12-22 08:16:20 +01:00
Remove is (not) null modifier for resume and play times (#3407)
This commit is contained in:
parent
cb3545a303
commit
cb808c7be2
1 changed files with 3 additions and 1 deletions
|
|
@ -106,7 +106,9 @@ export function makeCriteria(
|
|||
case "resume_time":
|
||||
case "duration":
|
||||
case "play_duration":
|
||||
return new DurationCriterion(new NumberCriterionOption(type, type));
|
||||
return new DurationCriterion(
|
||||
new MandatoryNumberCriterionOption(type, type)
|
||||
);
|
||||
case "favorite":
|
||||
return new FavoriteCriterion();
|
||||
case "hasMarkers":
|
||||
|
|
|
|||
Loading…
Reference in a new issue