diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index 217fcdcaa..4b9a79675 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -256,7 +256,7 @@ namespace NzbDrone.Core.Configuration public T GetValueEnum(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)