mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Remove is (not) null modifier for resume and play times (#3407)
This commit is contained in:
@@ -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":
|
||||
|
||||
Reference in New Issue
Block a user