mirror of
https://github.com/Radarr/Radarr
synced 2025-12-15 21:03:27 +01:00
Fixed: Add filterPredicates for InCinemas and PhysicalRelease
Fixes #3885
This commit is contained in:
parent
99bf3cf3ba
commit
95e5e3132b
1 changed files with 8 additions and 0 deletions
|
|
@ -116,6 +116,14 @@ export const filterPredicates = {
|
|||
return dateFilterPredicate(item.added, filterValue, type);
|
||||
},
|
||||
|
||||
inCinemas: function(item, filterValue, type) {
|
||||
return dateFilterPredicate(item.inCinemas, filterValue, type);
|
||||
},
|
||||
|
||||
physicalRelease: function(item, filterValue, type) {
|
||||
return dateFilterPredicate(item.physicalRelease, filterValue, type);
|
||||
},
|
||||
|
||||
ratings: function(item, filterValue, type) {
|
||||
const predicate = filterTypePredicates[type];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue