diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index b0607497f..dae520aba 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -72,7 +72,7 @@ const char *getSafeNodeName(OLEDDisplay *display, meshtastic_NodeInfoLite *node) std::string s = (raw && *raw) ? sanitizeString(raw) : std::string{}; // 3) Fallback if sanitize yields empty; otherwise copy safely (truncate if needed) - if (s.empty()) { + if (s.empty() || s == "¿" || s.find_first_not_of("¿") == std::string::npos) { writeFallbackId(); } else { // %.*s ensures null-termination and safe truncation to buffer size - 1