1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed: Movie Editor Path screwed up. Might also fix some other movie editor issues. (Fixes #2170)

This commit is contained in:
Leonardo Galli 2017-11-19 15:11:53 +01:00
parent 1a22486aba
commit ffb098357d
3 changed files with 3 additions and 3 deletions

View File

@ -133,7 +133,7 @@ module.exports = Marionette.ItemView.extend({
if (rootFolder !== 'noChange') {
var rootFolderPath = RootFolders.get(parseInt(rootFolder, 10));
var folderName = m.get('folderName');
m.set('path', rootFolderPath.get('path')+ folderName);
//m.set('path', rootFolderPath.get('path')+ folderName);
}
}
}

View File

@ -5,7 +5,7 @@ fullCollection.reset();
fullCollection.bindSignalR();
fullCollection.state.pageSize = -1;
fullCollection.state.page = 0;
fullCollection.mode = "client";
//fullCollection.mode = "client";
fullCollection.parseRecords = function(resp) {
return resp;
};

View File

@ -129,7 +129,7 @@ var Collection = PageableCollection.extend({
url : self.url + '/editor',
toJSON : function() {
return t.filter(function(model) {
return self.filter(function(model) {
return model.edited;
});
}