diff --git a/src/Podsync/Services/Storage/RedisStorage.cs b/src/Podsync/Services/Storage/RedisStorage.cs index 91a7232..581a7c1 100644 --- a/src/Podsync/Services/Storage/RedisStorage.cs +++ b/src/Podsync/Services/Storage/RedisStorage.cs @@ -182,7 +182,7 @@ namespace Podsync.Services.Storage var propertyType = typeof(P); if (propertyType.GetTypeInfo().IsEnum) { - value = (P)Enum.Parse(propertyType, entry.Value); + value = (P)Enum.Parse(propertyType, entry.Value, true); } else {