mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-24 00:33:05 +00:00
Fixed add existing series
This commit is contained in:
parent
475c86dcab
commit
139bfc3c27
1 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,10 @@ define([
|
|||
NzbDrone.AddSeries.Existing.FolderMatchResultView = Backbone.Marionette.ItemView.extend({
|
||||
template: 'AddSeries/SearchResultTemplate',
|
||||
|
||||
ui: {
|
||||
qualityProfile: '.x-quality-profile'
|
||||
},
|
||||
|
||||
events: {
|
||||
'click .x-add': 'addSeries'
|
||||
},
|
||||
|
@ -17,7 +21,7 @@ define([
|
|||
|
||||
var self = this;
|
||||
|
||||
var quality = this.options.qualityProfile.val();
|
||||
var quality = this.ui.qualityProfile.val();
|
||||
var rootFolderId = this.options.rootFolder.id;
|
||||
var folder = this.options.folder.name;
|
||||
|
||||
|
|
Loading…
Reference in a new issue