diff --git a/examples/companion_radio/MyMesh.cpp b/examples/companion_radio/MyMesh.cpp index c05a9dbf..52c88d05 100644 --- a/examples/companion_radio/MyMesh.cpp +++ b/examples/companion_radio/MyMesh.cpp @@ -1189,6 +1189,11 @@ void MyMesh::handleCmdFrame(size_t len) { bool success = getChannel(channel_idx, channel); if (success && sendGroupMessage(msg_timestamp, channel.channel, _prefs.node_name, text, len - i)) { writeOKFrame(); + #ifdef DISPLAY_CLASS + if (_ui) { + _ui->addSentChannelMessage(channel_idx, _prefs.node_name, text); + } +#endif } else { writeErrFrame(ERR_CODE_NOT_FOUND); // bad channel_idx }