From da7663a6fbcbe7229e9c6a7794a6a08d1974a2f2 Mon Sep 17 00:00:00 2001 From: Kevin Le Date: Thu, 21 May 2026 18:40:31 +0700 Subject: [PATCH] Fixed hasPendingWork for BLE companions --- examples/companion_radio/MyMesh.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/companion_radio/MyMesh.cpp b/examples/companion_radio/MyMesh.cpp index 495c2eba..3afbfc77 100644 --- a/examples/companion_radio/MyMesh.cpp +++ b/examples/companion_radio/MyMesh.cpp @@ -2225,8 +2225,5 @@ bool MyMesh::advert() { // To check if there is pending work bool MyMesh::hasPendingWork() const { -#if defined(WITH_BRIDGE) - if (bridge.isRunning()) return true; // bridge needs WiFi radio, can't sleep -#endif return _mgr->getOutboundTotal() > 0; }