Skip to content

Commit a75f4a2

Browse files
committed
Increase request info max size.
1 parent 70aa147 commit a75f4a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Platforms/Web/RequestInfoCollector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static RequestInfo Collect(HttpContextBase context, ExceptionlessConfigur
4848

4949
if (context.Request.Form.Count > 0)
5050
info.PostData = context.Request.Form.ToDictionary(config.DataExclusions);
51-
else if (context.Request.ContentLength > 0 && context.Request.ContentLength < 1024 * 4) {
51+
else if (context.Request.ContentLength > 0 && context.Request.ContentLength < 1024 * 50) {
5252
try {
5353
context.Request.InputStream.Position = 0;
5454
using (var inputStream = new StreamReader(context.Request.InputStream))

0 commit comments

Comments
 (0)