update digi2000
Some checks failed
Commit Test Build / build (map[chip:esp32 name:ttgo-lora32-v21]) (push) Has been cancelled

This commit is contained in:
Ricardo Guzman (Richonguzman) 2026-02-23 18:07:26 -03:00
parent 41f09af7b5
commit d4fc99466f

View file

@ -162,13 +162,13 @@ namespace DIGI_Utils {
queryMessage = APRS_IS_Utils::processReceivedLoRaMessage(Sender, AddresseeAndMessage, thirdPartyPacket);
}
}
if (!queryMessage) {
String loraPacket = generateDigipeatedPacket(packet.substring(3), thirdPartyPacket);
if (loraPacket != "") {
STATION_Utils::addToOutputPacketBuffer(loraPacket);
if (Config.digi.ecoMode != 1) displayToggle(true);
lastScreenOn = millis();
}
if (queryMessage) return; // answer should not be repeated.
String loraPacket = generateDigipeatedPacket(packet.substring(3), thirdPartyPacket);
if (loraPacket != "") {
STATION_Utils::addToOutputPacketBuffer(loraPacket);
if (Config.digi.ecoMode != 1) displayToggle(true);
lastScreenOn = millis();
}
}
}