Allow longer devtools JSON messages

This commit is contained in:
Paul Rouget 2020-08-03 17:22:24 +02:00
parent 43670c6eaa
commit 8759eb18ba

View file

@ -79,7 +79,7 @@ IAsyncAction DevtoolsClient::Loop() {
} catch (...) { } catch (...) {
throw hresult_error(E_FAIL, L"Can't parse message header:" + c); 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"); throw hresult_error(E_FAIL, L"Message length too long");
} }
} }