From 20824c2db4e9be35e3bc37ec908e7a9a69c8fc8c Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Sun, 10 May 2026 18:53:52 +0200 Subject: [PATCH] Fix: use out_path_len instead of path_len in QuickMsgScreen ContactInfo has out_path_len, not path_len. Co-Authored-By: Claude Sonnet 4.6 --- examples/companion_radio/ui-new/UITask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index 79ff490a..1d15b554 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -436,7 +436,7 @@ public: display.drawTextEllipsized(8, y, display.width() - 24, filtered); display.setColor(DisplayDriver::GREEN); char hop[5]; - snprintf(hop, sizeof(hop), c.path_len == 0xFF ? "D" : "%dh", (int)c.path_len); + snprintf(hop, sizeof(hop), c.out_path_len == 0xFF ? "D" : "%dh", (int)c.out_path_len); display.setCursor(display.width() - display.getTextWidth(hop) - 1, y); display.print(hop); }