Fix text nodes of message with HTML entitites

This commit is contained in:
Francis Lachapelle
2014-04-07 11:21:52 -04:00
parent 526e21e837
commit 534e4e3d4d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -417,7 +417,7 @@
{
if (!ignoreContent)
{
[result appendString: [NSString stringWithCharacters: characters length: length]];
[result appendString: [[NSString stringWithCharacters: characters length: length] stringByEscapingHTMLString]];
}
}