From 7c48abbcca795189e5b33bd3b11da50d8363a5e0 Mon Sep 17 00:00:00 2001 From: Hayodea Hakol Date: Mon, 15 Sep 2025 08:25:20 -0400 Subject: [PATCH] Body:init: Return true if any devices were initialized at all --- smocore/body/body.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smocore/body/body.cpp b/smocore/body/body.cpp index d260e2f..9422fc5 100644 --- a/smocore/body/body.cpp +++ b/smocore/body/body.cpp @@ -97,7 +97,7 @@ public: << results.nSucceeded << " of " << results.nTotal << " sense devices." << "\n"; - callOriginalCbFn(results.nSucceeded == results.nTotal); + callOriginalCbFn(results.nSucceeded > 0); } };