Skip to content

Commit

Permalink
Update HTTPUtil.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed May 21, 2022
1 parent 06dd2d7 commit 5b7b7ce
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion BBDown.Core/Util/HTTPUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public static async Task<string> GetPostResponseAsync(string Url, byte[] postDat
request.Headers.TryAddWithoutValidation("Cookie", Config.COOKIE);
request.Content = new ByteArrayContent(postData);
var webResponse = await AppHttpClient.SendAsync(request, HttpCompletionOption.ResponseHeadersRead);
Stream myRequestStream = await webResponse.Content.ReadAsStreamAsync();
htmlCode = await webResponse.Content.ReadAsStringAsync();
return htmlCode;
}
Expand Down

0 comments on commit 5b7b7ce

Please sign in to comment.