From 8759eb18ba0189332623904436c41b1081e26b76 Mon Sep 17 00:00:00 2001 From: Paul Rouget Date: Mon, 3 Aug 2020 17:22:24 +0200 Subject: [PATCH] Allow longer devtools JSON messages --- support/hololens/ServoApp/Devtools/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/hololens/ServoApp/Devtools/Client.cpp b/support/hololens/ServoApp/Devtools/Client.cpp index f854647ce0a..a790b2f0eb8 100644 --- a/support/hololens/ServoApp/Devtools/Client.cpp +++ b/support/hololens/ServoApp/Devtools/Client.cpp @@ -79,7 +79,7 @@ IAsyncAction DevtoolsClient::Loop() { } catch (...) { throw hresult_error(E_FAIL, L"Can't parse message header:" + c); } - if (len >= 10000) { + if (len >= 100000) { throw hresult_error(E_FAIL, L"Message length too long"); } }