From 165b0cc4c6ef1e14c009287116b93854ca8787d5 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sun, 21 Aug 2022 19:06:10 -0700 Subject: [PATCH] Update Location to Waypoint per new photos --- Meshtastic/Helpers/BLEManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Helpers/BLEManager.swift b/Meshtastic/Helpers/BLEManager.swift index 08a77c6c..a5922abc 100644 --- a/Meshtastic/Helpers/BLEManager.swift +++ b/Meshtastic/Helpers/BLEManager.swift @@ -765,7 +765,7 @@ class BLEManager: NSObject, ObservableObject, CBCentralManagerDelegate, CBPeriph return false } - var waypointPacket = Location() + var waypointPacket = Waypoint() waypointPacket.latitudeI = Int32(LocationHelper.currentLocation.latitude * 1e7) waypointPacket.longitudeI = Int32(LocationHelper.currentLocation.longitude * 1e7)