From e60ef655cb6f2623138dcb4570813aa7c7e3d918 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Mon, 3 May 2021 10:53:24 +0800 Subject: [PATCH] fix serious bug! plugin was incorrectly stopping packet processing --- src/plugins/ExternalNotificationPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/ExternalNotificationPlugin.cpp b/src/plugins/ExternalNotificationPlugin.cpp index e48b7beda..d5ad167b6 100644 --- a/src/plugins/ExternalNotificationPlugin.cpp +++ b/src/plugins/ExternalNotificationPlugin.cpp @@ -176,5 +176,5 @@ bool ExternalNotificationPlugin::handleReceived(const MeshPacket &mp) #endif - return true; // Let others look at this message also if they want + return false; // Very important to never return TRUE here. TRUE means we handled the packet and we will stop letting other plugins see it }