Fix parsing HtmlDocuments with special chars

ArchiBoT accidentally found that this is unnecessary and actually causes problems with incorrectly used special characters.
Further tests needed, who knows if it doesn't break somewhere else now.
This commit is contained in:
JustArchi
2017-01-26 03:58:34 +01:00
parent 16519e4e1c
commit 001e41124c

View File

@@ -269,7 +269,7 @@ namespace ArchiSteamFarm {
}
HtmlDocument htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(WebUtility.HtmlDecode(content));
htmlDocument.LoadHtml(content);
return htmlDocument;
}
@@ -358,7 +358,7 @@ namespace ArchiSteamFarm {
}
HtmlDocument htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(WebUtility.HtmlDecode(content));
htmlDocument.LoadHtml(content);
return htmlDocument;
}