Fix RX advert data parsing

This commit is contained in:
Janez T
2026-03-14 16:34:31 +01:00
parent a3147e9d7c
commit 6e9e9e397d
22 changed files with 1636 additions and 683 deletions

View File

@@ -2255,7 +2255,7 @@ class ConnectionProvider with ChangeNotifier {
if (!_activeService.isConnected) {
_error = 'Not connected to device';
notifyListeners();
return;
throw Exception(_error);
}
try {
@@ -2263,6 +2263,7 @@ class ConnectionProvider with ChangeNotifier {
} catch (e) {
_error = 'Failed to remove contact: $e';
notifyListeners();
rethrow;
}
}