1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

Fixed series filter 'missing' since percentOfEpisodes isn't always set.

This commit is contained in:
Taloth Saldono
2016-06-19 00:28:01 +02:00
parent b3eee50892
commit 2fa0729158
2 changed files with 8 additions and 19 deletions
+3 -3
View File
@@ -65,9 +65,9 @@ var Collection = PageableCollection.extend({
true
],
'missing' : [
'percentOfEpisodes',
100,
'lt'
null,
null,
function(model) { return model.get('episodeCount') !== model.get('episodeFileCount'); }
]
},