mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-04 23:59:58 +01:00
Merge pull request #100 from dg0tm/issue-99
This commit is contained in:
commit
13a12ba036
|
|
@ -64,7 +64,7 @@ bool RouterTask::loop(System &system) {
|
|||
String path = digiMsg->getPath();
|
||||
|
||||
// simple loop check
|
||||
if (path.indexOf("WIDE1-1") >= 0 || path.indexOf(system.getUserConfig()->callsign) == -1) {
|
||||
if (path.indexOf("WIDE1-1") >= 0 && path.indexOf(system.getUserConfig()->callsign) == -1) {
|
||||
// fixme
|
||||
digiMsg->setPath(system.getUserConfig()->callsign + "*");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue