mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-08-06 17:03:14 +02:00
25SegBuffer fix
This commit is contained in:
@@ -81,7 +81,7 @@ namespace STATION_Utils {
|
||||
for (int i = 0; i < packet25SegBuffer.size(); i++) {
|
||||
String temp = packet25SegBuffer[i].substring(packet25SegBuffer[i].indexOf(",") + 1);
|
||||
String bufferStation = temp.substring(0, temp.indexOf(","));
|
||||
String bufferMessage = temp.substring(0, temp.indexOf(",") + 1);
|
||||
String bufferMessage = temp.substring(temp.indexOf(",") + 1);
|
||||
if (bufferStation == station && bufferMessage == textMessage) {
|
||||
shouldBeIgnored = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user