revert NewReaction client and fix SimpleJsonSerializer

This commit is contained in:
Martin Scholz
2016-06-23 09:45:22 +02:00
parent f7a464cc3a
commit 844be5586d
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ namespace Octokit.Internal
Justification = "The API expects lowercase values")]
protected override object SerializeEnum(Enum p)
{
return p.ToString().ToLowerInvariant();
return p.ToParameter();
}
private string _type;