mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
Fixed: Movie Editor Path screwed up. Might also fix some other movie editor issues. (Fixes #2170)
This commit is contained in:
parent
1a22486aba
commit
ffb098357d
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user