Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/61066cb6cfd25be1371d0b50c7807e46e362e8f9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Library shown as empty after filter returns no movies and page is refreshed ()

Fixes 
pull/3546/head
Daniel Dammermann 6 years ago committed by Leonardo Galli
parent 2f76f3c6b6
commit 61066cb6cf

@ -370,7 +370,7 @@ module.exports = Marionette.Layout.extend({
},
_renderView : function() {
if (MoviesCollection.length === 0) {
if (MoviesCollection.length === 0 && !this.moviesCollection.isFiltered()) {
this.moviesRegion.show(new EmptyView());
this.toolbar.close();

@ -261,6 +261,10 @@ var Collection = PageableCollection.extend({
this.fetch();
},
isFiltered : function() {
return this.state.filterKey && this.state.filterKey !== 'all';
},
comparator: function (model) {
return model.get('sortTitle');
}

Loading…
Cancel
Save