Skip to content

Commit

Permalink
Handle a European apostrophe in escaped characters
Browse files Browse the repository at this point in the history
  • Loading branch information
BlythMeister committed Mar 28, 2017
1 parent aa4ea59 commit a875c2c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/extension/ServiceMessageWriter.cs
Expand Up @@ -40,6 +40,7 @@ private static string EscapeString(string value)
return value != null
? value.Replace("|", "||")
.Replace("'", "|'")
.Replace("", "|’")
.Replace("\n", "|n")
.Replace("\r", "|r")
.Replace(char.ConvertFromUtf32(int.Parse("0086", NumberStyles.HexNumber)), "|x")
Expand Down

0 comments on commit a875c2c

Please sign in to comment.