Skip to content

Commit

Permalink
Update ApnsNotification.cs
Browse files Browse the repository at this point in the history
JObject.ToString() default  Returns the indented JSON for this token.
  • Loading branch information
1158626753 committed Mar 29, 2016
1 parent 70c1b6e commit 53e2dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PushSharp.Apple/ApnsNotification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public override string ToString ()
{
try {
if (Payload != null)
return Payload.ToString ();
return Payload.ToString(Newtonsoft.Json.Formatting.None);
} catch {
}

Expand Down

0 comments on commit 53e2dfd

Please sign in to comment.