Commit 30920247 authored by Honfika's avatar Honfika

exception message fix

parent 59c38199
......@@ -63,7 +63,7 @@ namespace Titanium.Web.Proxy.EventArguments
if (!int.TryParse(chunkHead, NumberStyles.HexNumber, null, out int chunkSize))
{
throw new ProxyHttpException($"Invalid chunk length: '{chunkSize}'", null, null);
throw new ProxyHttpException($"Invalid chunk length: '{chunkHead}'", null, null);
}
bytesRemaining = chunkSize;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment