mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Use Season Folder is set in config (also set per Series), default is true.
This commit is contained in:
parent
3b749a39a7
commit
165beda55b
3 changed files with 30 additions and 4 deletions
|
@ -111,6 +111,11 @@ namespace NzbDrone.Core.Providers
|
|||
repoSeries.CleanTitle = Parser.NormalizeTitle(series.SeriesName);
|
||||
repoSeries.Monitored = true; //New shows should be monitored
|
||||
repoSeries.QualityProfileId = Convert.ToInt32(_config.GetValue("DefaultQualityProfile", "1", true));
|
||||
repoSeries.SeasonFolder = true;
|
||||
|
||||
if (!Convert.ToBoolean(_config.GetValue("SeasonFolder", true, true)))
|
||||
repoSeries.SeasonFolder = false;
|
||||
|
||||
_sonioRepo.Add(repoSeries);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue