fix(sonarr.ts, mediarequest.ts): add missing seasonFolder option (#358)

This commit is contained in:
ecelebi29
2020-12-17 03:18:18 +03:00
committed by GitHub
parent ad18a40969
commit e9c899ce41
2 changed files with 3 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ interface AddSeriesOptions {
title: string;
profileId: number;
seasons: number[];
seasonFolder: boolean;
rootFolderPath: string;
monitored?: boolean;
searchNow?: boolean;
@@ -149,6 +150,7 @@ class SonarrAPI {
monitored: false,
}))
),
seasonFolder: options.seasonFolder,
monitored: options.monitored,
rootFolderPath: options.rootFolderPath,
addOptions: {