sender vs Sender fix
This commit is contained in:
parent
c1bb6e39ef
commit
e52ac86e3e
|
|
@ -63,8 +63,7 @@ namespace DIGI_Utils {
|
||||||
if ((packet.substring(0, 3) == "\x3c\xff\x01") && (packet.indexOf("NOGATE") == -1)) {
|
if ((packet.substring(0, 3) == "\x3c\xff\x01") && (packet.indexOf("NOGATE") == -1)) {
|
||||||
Sender = packet.substring(3, packet.indexOf(">"));
|
Sender = packet.substring(3, packet.indexOf(">"));
|
||||||
if (Sender != Config.callsign) {
|
if (Sender != Config.callsign) {
|
||||||
String sender = packet.substring(3, packet.indexOf(">"));
|
STATION_Utils::updateLastHeard(Sender);
|
||||||
STATION_Utils::updateLastHeard(sender);
|
|
||||||
// STATION_Utils::updatePacketBuffer(packet);
|
// STATION_Utils::updatePacketBuffer(packet);
|
||||||
Utils::typeOfPacket(packet.substring(3), "Digi");
|
Utils::typeOfPacket(packet.substring(3), "Digi");
|
||||||
AddresseeAndMessage = packet.substring(packet.indexOf("::") + 2);
|
AddresseeAndMessage = packet.substring(packet.indexOf("::") + 2);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue