1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-11-06 09:19:38 +02:00

EpisodeSorting setup, setting page created and usable, needs labels still.

This commit is contained in:
markus101
2011-02-25 20:07:22 -08:00
parent 165beda55b
commit 46830a2777
11 changed files with 312 additions and 7 deletions

View File

@@ -208,7 +208,7 @@ namespace NzbDrone.Core.Providers
private string GetSeasonFolder(int seasonNumber)
{
return
_configProvider.GetValue("SeasonFolder", "Season %s", true).Replace("%s", seasonNumber.ToString()).
_configProvider.GetValue("Sorting_SeasonFolderFormat", "Season %s", true).Replace("%s", seasonNumber.ToString()).
Replace("%0s", seasonNumber.ToString("00"));
}
}