1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Fixed: Config file settings do not need to be case-sensitive

This commit is contained in:
Bogdan
2023-04-11 21:52:25 +03:00
committed by GitHub
parent 3b5e83670b
commit 2107635b7e
@@ -255,7 +255,7 @@ namespace NzbDrone.Core.Configuration
public T GetValueEnum<T>(string key, T defaultValue, bool persist = true)
{
return (T)Enum.Parse(typeof(T), GetValue(key, defaultValue, persist));
return (T)Enum.Parse(typeof(T), GetValue(key, defaultValue, persist), true);
}
public string GetValue(string key, object defaultValue, bool persist = true)