Skip to content

Commit

Permalink
RFONLY coma fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Apr 5, 2024
1 parent e4bc8ee commit b9024d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aprs_is_utils.cpp
Expand Up @@ -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("{"));
}
Expand Down

0 comments on commit b9024d3

Please sign in to comment.