1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00

reset filters on save..

This commit is contained in:
geogolem 2017-03-02 01:57:51 -05:00
parent d03ee006fc
commit 5394f1dee9

View File

@ -108,6 +108,10 @@ module.exports = Marionette.ItemView.extend({
model.edited = true;
});
for (var j=0; j<i; j++) {
var filterKey = this.moviesCollection.state.filterKey;
var filterValue = this.moviesCollection.state.filterValue;
this.moviesCollection.setFilterMode('all');
//this.moviesCollection.fullCollection.resetFiltered();
var m = this.moviesCollection.fullCollection.findWhere({ tmdbId : b[j] });
if (m!== undefined) {
if (monitored === 'true') {
@ -134,6 +138,9 @@ module.exports = Marionette.ItemView.extend({
var rootFolderPath = RootFolders.get(parseInt(rootFolder, 10));
m.set('rootFolderPath', rootFolderPath.get('path'));
}
this.moviesCollection.state.filterKey = filterKey;
this.moviesCollection.state.filterValue = filterValue;
this.moviesCollection.fullCollection.resetFiltered();
}
}