From ba6dc08db1fedccda1008ff257d7a96d623f552b Mon Sep 17 00:00:00 2001 From: Manuel Ochoa Date: Thu, 29 Jan 2026 13:53:56 -0500 Subject: [PATCH] Update TEXT param to use valueWithoutFrom for consistency Both value and TEXT fields now contain the message body without the FROM prefix, making the API consistent and useful for clients. Co-Authored-By: Claude Opus 4.5 --- JS8_Mainwindow/processCommandActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JS8_Mainwindow/processCommandActivity.cpp b/JS8_Mainwindow/processCommandActivity.cpp index b7f8c876..2fed4322 100644 --- a/JS8_Mainwindow/processCommandActivity.cpp +++ b/JS8_Mainwindow/processCommandActivity.cpp @@ -169,7 +169,7 @@ void UI_Constructor::processCommandActivity() { {"CMD", QVariant(d.cmd)}, {"GRID", QVariant(d.grid)}, {"EXTRA", QVariant(d.extra)}, - {"TEXT", QVariant(d.text)}, + {"TEXT", QVariant(valueWithoutFrom)}, {"FREQ", QVariant(d.dial + d.offset)}, {"DIAL", QVariant(d.dial)}, {"OFFSET", QVariant(d.offset)},