From 2634978e5729fc6c1ec659f03ec1c79c6ca25f4d Mon Sep 17 00:00:00 2001 From: Jason P Date: Thu, 11 Dec 2025 09:29:37 -0600 Subject: [PATCH] Revert "Set nodeName to maximum size" This reverts commit e254f399256c746b0c82d62475b580d27d4fbbb9. --- src/graphics/draw/NodeListRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index d6446ce75..b073f17b3 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -55,7 +55,7 @@ static int scrollIndex = 0; const char *getSafeNodeName(OLEDDisplay *display, meshtastic_NodeInfoLite *node) { - static char nodeName[25]; // single static buffer we return + static char nodeName[16]; // single static buffer we return nodeName[0] = '\0'; auto writeFallbackId = [&] {