Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/f7471940c47e52d13b8c411c62e8f3eaaafd8c1e?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Add Missing Filter ()

William Comartin 8 years ago committed by Leonardo Galli
parent 3a6873cc4d
commit f7471940c4

@ -175,6 +175,13 @@ module.exports = Marionette.Layout.extend({
tooltip : 'Monitored Only', tooltip : 'Monitored Only',
icon : 'icon-sonarr-monitored', icon : 'icon-sonarr-monitored',
callback : this._setFilter callback : this._setFilter
},
{
key : 'missing',
title : '',
tooltip : 'Missing Only',
icon : 'icon-sonarr-missing',
callback : this._setFilter
} }
] ]
}; };

@ -65,9 +65,8 @@ var Collection = PageableCollection.extend({
true true
], ],
'missing' : [ 'missing' : [
null, 'downloaded',
null, false
function(model) { return model.get('episodeCount') !== model.get('episodeFileCount'); }
] ]
}, },

Loading…
Cancel
Save