|
|
|
|
@ -1949,6 +1949,8 @@ class MeshCoreConnector extends ChangeNotifier {
|
|
|
|
|
type: contact.type,
|
|
|
|
|
pathLength: contact.pathLength,
|
|
|
|
|
path: contact.path,
|
|
|
|
|
latitude: contact.latitude,
|
|
|
|
|
longitude: contact.longitude,
|
|
|
|
|
lastSeen: DateTime.now(),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
@ -4345,8 +4347,8 @@ class MeshCoreConnector extends ChangeNotifier {
|
|
|
|
|
appLogger.warn('Malformed RX frame: $e', tag: 'Connector');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
double latitude = 0.0;
|
|
|
|
|
double longitude = 0.0;
|
|
|
|
|
double? latitude;
|
|
|
|
|
double? longitude;
|
|
|
|
|
String name = '';
|
|
|
|
|
Uint8List publicKey = Uint8List(0);
|
|
|
|
|
int type = 0;
|
|
|
|
|
@ -4406,8 +4408,8 @@ class MeshCoreConnector extends ChangeNotifier {
|
|
|
|
|
double snr,
|
|
|
|
|
) {
|
|
|
|
|
final advert = BufferReader(payload);
|
|
|
|
|
double latitude = 0.0;
|
|
|
|
|
double longitude = 0.0;
|
|
|
|
|
double? latitude;
|
|
|
|
|
double? longitude;
|
|
|
|
|
String name = '';
|
|
|
|
|
String contactKeyHex = '';
|
|
|
|
|
Uint8List publicKey = Uint8List(0);
|
|
|
|
|
|