Skip to content

Commit 85cd548

Browse files
committed
Ignore case true while parsing mod action
1 parent df0ac12 commit 85cd548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RedditSharp/ModActionType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist
6868
}
6969
else
7070
{
71-
return Enum.Parse(typeof(ModActionType), value);
71+
return Enum.Parse(typeof(ModActionType), value, true);
7272
}
7373

7474
}

0 commit comments

Comments
 (0)