mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Config file settings do not need to be case-sensitive
(cherry picked from commit 2107635b7e7e5392624f2957af7d7b88ba6be283)
This commit is contained in:
parent
d0fcac389c
commit
ecc906a754
@ -254,7 +254,7 @@ public bool GetValueBoolean(string key, bool defaultValue, bool persist = true)
|
|||||||
|
|
||||||
public T GetValueEnum<T>(string key, T defaultValue, bool persist = true)
|
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)
|
public string GetValue(string key, object defaultValue, bool persist = true)
|
||||||
|
Loading…
Reference in New Issue
Block a user