Fixed: Custom filters with release date filter

Fixes #10508
pull/10514/head
Bogdan 5 months ago
parent 6e04dc894b
commit 40551ba5a3

@ -156,6 +156,10 @@ export const filterPredicates = {
return dateFilterPredicate(item.digitalRelease, filterValue, type);
},
releaseDate: function(item, filterValue, type) {
return dateFilterPredicate(item.releaseDate, filterValue, type);
},
tmdbRating: function({ ratings = {} }, filterValue, type) {
const predicate = filterTypePredicates[type];

Loading…
Cancel
Save