mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
* LOOP_DETECT_MODERATE bug fix
This commit is contained in:
parent
e233346bf0
commit
5684b4f1b8
1 changed files with 1 additions and 1 deletions
|
|
@ -424,7 +424,7 @@ bool MyMesh::allowPacketForward(const mesh::Packet *packet) {
|
|||
const uint8_t* maximums;
|
||||
if (_prefs.loop_detect == LOOP_DETECT_MINIMAL) {
|
||||
maximums = max_loop_minimal;
|
||||
} else if (_prefs.loop_detect == LOOP_DETECT_MINIMAL) {
|
||||
} else if (_prefs.loop_detect == LOOP_DETECT_MODERATE) {
|
||||
maximums = max_loop_moderate;
|
||||
} else {
|
||||
maximums = max_loop_strict;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue