Merge pull request #226 from smittix/fix/meshcore-ble-scan-method

fix(meshcore): call scan_ble_sync() in BLE scan route
This commit is contained in:
Smittix
2026-05-13 20:47:38 +01:00
committed by GitHub
+1 -1
View File
@@ -93,7 +93,7 @@ def ports():
def ble_scan():
if not is_meshcore_available():
return api_error("meshcore not installed", 503)
devices = _client().scan_ble()
devices = _client().scan_ble_sync()
return jsonify({"devices": devices})