Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 3092024

Browse files
committed
exception message fix
1 parent 59c3819 commit 3092024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Titanium.Web.Proxy/EventArguments/LimitedStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private void getNextChunk()
6363

6464
if (!int.TryParse(chunkHead, NumberStyles.HexNumber, null, out int chunkSize))
6565
{
66-
throw new ProxyHttpException($"Invalid chunk length: '{chunkSize}'", null, null);
66+
throw new ProxyHttpException($"Invalid chunk length: '{chunkHead}'", null, null);
6767
}
6868

6969
bytesRemaining = chunkSize;

0 commit comments

Comments
 (0)