mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
Fix duplicate callsign in RX.DIRECTED TCP messages (#123)
TEXT param contained the full formatted message including FROM prefix, causing duplication when clients reconstruct the message. Changed to use d.text (message body) instead. Co-authored-by: Manuel Ochoa <mochoa@protonmail.com>
This commit is contained in:
parent
9ed3adbdfc
commit
09281f7e68
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ void MainWindow::processCommandActivity() {
|
|||
{"CMD", QVariant(d.cmd)},
|
||||
{"GRID", QVariant(d.grid)},
|
||||
{"EXTRA", QVariant(d.extra)},
|
||||
{"TEXT", QVariant(text)},
|
||||
{"TEXT", QVariant(d.text)},
|
||||
{"FREQ", QVariant(d.dial + d.offset)},
|
||||
{"DIAL", QVariant(d.dial)},
|
||||
{"OFFSET", QVariant(d.offset)},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue