RFONLY coma fix

This commit is contained in:
richonguzman 2024-04-05 12:10:12 -03:00
parent e4bc8eecbe
commit b9024d34cb
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ namespace APRS_IS_Utils {
if (Config.beacon.path == "") {
LoRa_Utils::sendNewPacket("APRS", Config.callsign + ">APLRG1,RFONLY::" + sender + ":" + ackMessage);
} else {
LoRa_Utils::sendNewPacket("APRS", Config.callsign + ">APLRG1,RFONLY" + Config.beacon.path + "::" + sender + ":" + ackMessage);
LoRa_Utils::sendNewPacket("APRS", Config.callsign + ">APLRG1,RFONLY," + Config.beacon.path + "::" + sender + ":" + ackMessage);
}
receivedMessage = packet.substring(packet.indexOf(":") + 1, packet.indexOf("{"));
}