Skip to content

Commit 043ad10

Browse files
committed
Merge pull request #202 from CrustyJew/master
Ignore case true while parsing mod action
2 parents df0ac12 + 85cd548 commit 043ad10

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)