From 18af9d734d9a2a2653c4697c4ba19d35750381a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Wed, 12 Oct 2022 13:13:02 +0200 Subject: [PATCH] fixes #1787 --- src/mesh/MeshModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/MeshModule.cpp b/src/mesh/MeshModule.cpp index 63f2a4358..7b204ae49 100644 --- a/src/mesh/MeshModule.cpp +++ b/src/mesh/MeshModule.cpp @@ -112,7 +112,7 @@ void MeshModule::callPlugins(const MeshPacket &mp, RxSource src) bool rxChannelOk = !pi.boundChannel || (mp.from == 0) || !ch || strlen(ch->settings.name) > 0 || - (strcmp(ch->settings.name, pi.boundChannel) == 0); + (strcasecmp(ch->settings.name, pi.boundChannel) == 0); if (!rxChannelOk) { // no one should have already replied!