mirror of
https://github.com/Radarr/Radarr
synced 2025-02-20 13:27:10 +00:00
Fixed season folder format not changing
This commit is contained in:
parent
e6e842c218
commit
2e8311bdd0
1 changed files with 2 additions and 4 deletions
|
@ -132,8 +132,8 @@ public bool UseSeasonFolder
|
|||
|
||||
public string SeasonFolderFormat
|
||||
{
|
||||
get { return GetValue("Sorting_SeasonFolderFormat", "Season %s"); }
|
||||
set { SetValue("Sorting_SeasonFolderFormat", value); }
|
||||
get { return GetValue("SeasonFolderFormat", "Season %s"); }
|
||||
set { SetValue("SeasonFolderFormat", value); }
|
||||
}
|
||||
|
||||
public string UpdateUrl
|
||||
|
@ -351,8 +351,6 @@ public void SetValue(string key, Enum value)
|
|||
SetValue(key, value.ToString().ToLower());
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void EnsureCache()
|
||||
{
|
||||
lock (_cache)
|
||||
|
|
Loading…
Reference in a new issue