mirror of
https://github.com/Radarr/Radarr
synced 2025-01-04 06:23:32 +00:00
Merge pull request #988 from Radarr/filterFixMainIndex
i believe these are old code that is not needed since pagination..
This commit is contained in:
commit
8c656626d6
1 changed files with 3 additions and 3 deletions
|
@ -146,17 +146,17 @@ var Collection = PageableCollection.extend({
|
|||
'released' : [
|
||||
"status",
|
||||
"released",
|
||||
function(model) { return model.getStatus() == "released"; }
|
||||
//function(model) { return model.getStatus() == "released"; }
|
||||
],
|
||||
'announced' : [
|
||||
"status",
|
||||
"announced",
|
||||
function(model) { return model.getStatus() == "announced"; }
|
||||
//function(model) { return model.getStatus() == "announced"; }
|
||||
],
|
||||
'cinemas' : [
|
||||
"status",
|
||||
"inCinemas",
|
||||
function(model) { return model.getStatus() == "inCinemas"; }
|
||||
//function(model) { return model.getStatus() == "inCinemas"; }
|
||||
]
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue