From 0b96486e7e7c2ba314e3904f06d37483acf9cbd1 Mon Sep 17 00:00:00 2001 From: Jason P Date: Sun, 5 Oct 2025 22:38:31 -0500 Subject: [PATCH] Fix outbound labels based to avoid creating delays --- src/graphics/draw/MessageRenderer.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/graphics/draw/MessageRenderer.cpp b/src/graphics/draw/MessageRenderer.cpp index 68a599ebf..381f2bbe9 100644 --- a/src/graphics/draw/MessageRenderer.cpp +++ b/src/graphics/draw/MessageRenderer.cpp @@ -466,16 +466,7 @@ void drawTextMessageFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16 // Final header line char headerStr[96]; if (mine) { - if (m.ackStatus == AckStatus::ACKED) { - // Destination ACK - snprintf(headerStr, sizeof(headerStr), "Sent %s %s", timeBuf, chanType); - } else if (m.ackStatus == AckStatus::NACKED || m.ackStatus == AckStatus::TIMEOUT) { - // Failure or timeout - snprintf(headerStr, sizeof(headerStr), "Failed %s %s", timeBuf, chanType); - } else if (m.ackStatus == AckStatus::RELAYED) { - // Relay ACK - snprintf(headerStr, sizeof(headerStr), "Relayed %s %s", timeBuf, chanType); - } + snprintf(headerStr, sizeof(headerStr), "%s %s", timeBuf, chanType); } else { snprintf(headerStr, sizeof(headerStr), "%s @%s %s", timeBuf, sender, chanType); }