Increase buffer size to fit B0 code

This commit is contained in:
Max Prokhorov
2018-12-13 01:08:27 +03:00
committed by GitHub
parent d2e0b12189
commit e47bdad2ac

View File

@@ -102,7 +102,7 @@ static bool _rfbToChar(byte * in, char * out, int n = RF_MESSAGE_SIZE) {
#if WEB_SUPPORT
void _rfbWebSocketSendCode(unsigned char id, bool status, const char * code) {
char wsb[100];
char wsb[192];
snprintf_P(wsb, sizeof(wsb), PSTR("{\"rfb\":[{\"id\": %d, \"status\": %d, \"data\": \"%s\"}]}"), id, status ? 1 : 0, code);
wsSend(wsb);
}