From cb31b0882ab27af25330b6d43b039ea746ac4381 Mon Sep 17 00:00:00 2001 From: kevin Date: Sun, 20 Mar 2022 10:24:36 -0400 Subject: [PATCH] cwUi.cpp : Increased the size of the _sendValue() buffer from 512 to 1024. --- cwUi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwUi.cpp b/cwUi.cpp index 6427bdf..c29ecb9 100644 --- a/cwUi.cpp +++ b/cwUi.cpp @@ -963,7 +963,7 @@ namespace cw if( p->sendCbFunc != nullptr ) { const char* mFmt = "{ \"op\":\"%s\", \"uuId\":%i, \"value\":%s }"; - const int mbufN = 512; + const int mbufN = 1024; char vbuf[vbufN]; char mbuf[mbufN];