From dc7f37677883a85f8485897f6c7a4842c51ce6da Mon Sep 17 00:00:00 2001 From: joshpirihi Date: Sat, 29 Jan 2022 06:40:17 +1300 Subject: [PATCH] Correct a comment --- src/mesh/Router.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesh/Router.cpp b/src/mesh/Router.cpp index babd74393..64e0a4795 100644 --- a/src/mesh/Router.cpp +++ b/src/mesh/Router.cpp @@ -222,7 +222,7 @@ ErrorCode Router::send(MeshPacket *p) * set 0 0 * set 1 1 * - * => so we only encrypt mqtt if they have a custom mqtt server AND mqtt_encryption_enabled is FALSE + * => so we only decrypt mqtt if they have a custom mqtt server AND mqtt_encryption_enabled is FALSE */ bool shouldActuallyEncrypt = true; @@ -397,4 +397,4 @@ void Router::perhapsHandleReceived(MeshPacket *p) handleReceived(p); packetPool.release(p); -} \ No newline at end of file +}