From e5544bce2eda479c3f9a73270eb34dd0852d0149 Mon Sep 17 00:00:00 2001 From: Alexandru Macocian Date: Mon, 23 Mar 2020 22:43:02 +0100 Subject: [PATCH] fixed a bug caused by http message fragmentation --- MTSC/ServerSide/Handlers/HttpHandler.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MTSC/ServerSide/Handlers/HttpHandler.cs b/MTSC/ServerSide/Handlers/HttpHandler.cs index 34c1c66..1b5d17b 100644 --- a/MTSC/ServerSide/Handlers/HttpHandler.cs +++ b/MTSC/ServerSide/Handlers/HttpHandler.cs @@ -139,7 +139,8 @@ namespace MTSC.ServerSide.Handlers ex is IncompleteRequestBodyException || ex is IncompleteRequestQueryException || ex is IncompleteRequestURIException || - ex is IncompleteRequestException) + ex is IncompleteRequestException || + ex is InvalidPostFormException) { server.LogDebug(ex.Message); server.LogDebug(ex.StackTrace);