Fixed hasPendingWork for BLE companions

This commit is contained in:
Kevin Le
2026-05-21 18:40:31 +07:00
parent 280213d41f
commit da7663a6fb
-3
View File
@@ -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;
}