Update WebBrowser.cs

This commit is contained in:
JustArchi
2020-04-18 00:35:45 +02:00
parent fab8c667d2
commit 70d89ad008

View File

@@ -840,7 +840,7 @@ namespace ArchiSteamFarm {
IBrowsingContext context = BrowsingContext.New();
try {
IDocument document = await context.OpenAsync(req => req.Content(streamResponse.Content)).ConfigureAwait(false);
IDocument document = await context.OpenAsync(req => req.Content(streamResponse.Content, true)).ConfigureAwait(false);
return new HtmlDocumentResponse(streamResponse, document);
} catch (Exception e) {