mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-11 07:53:58 +01:00
fix: missing sender variable
This commit is contained in:
parent
ca3c1eaf9f
commit
a8a7c3e3a3
|
|
@ -61,6 +61,7 @@ namespace DIGI_Utils {
|
|||
String loraPacket, Sender, AddresseeAndMessage, Addressee;
|
||||
if (packet != "") {
|
||||
if ((packet.substring(0, 3) == "\x3c\xff\x01") && (packet.indexOf("NOGATE") == -1)) {
|
||||
Sender = packet.substring(3, packet.indexOf(">"));
|
||||
if (Sender != Config.callsign) {
|
||||
String sender = packet.substring(3, packet.indexOf(">"));
|
||||
STATION_Utils::updateLastHeard(sender);
|
||||
|
|
|
|||
Loading…
Reference in a new issue