Fixed: Series type won't flash back to Standard when adding an Anime series
This commit is contained in:
parent
7af782d353
commit
a550e94fee
|
@ -155,10 +155,13 @@ define(
|
||||||
var seriesType = this.ui.seriesType.val();
|
var seriesType = this.ui.seriesType.val();
|
||||||
var seasonFolder = this.ui.seasonFolder.prop('checked');
|
var seasonFolder = this.ui.seasonFolder.prop('checked');
|
||||||
|
|
||||||
this.model.set('qualityProfileId', quality);
|
this.model.set({
|
||||||
this.model.set('rootFolderPath', rootFolderPath);
|
qualityProfileId: quality,
|
||||||
this.model.set('seasonFolder', seasonFolder);
|
rootFolderPath: rootFolderPath,
|
||||||
this.model.set('seriesType', seriesType);
|
seasonFolder: seasonFolder,
|
||||||
|
seriesType: seriesType
|
||||||
|
}, { silent: true });
|
||||||
|
|
||||||
this.model.setSeasonPass(startingSeason);
|
this.model.setSeasonPass(startingSeason);
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
Loading…
Reference in New Issue