From ca87d722f897f8bfc7361d7a50265ae9c8696ecc Mon Sep 17 00:00:00 2001 From: rUv Date: Sat, 22 Aug 2026 17:31:14 -0400 Subject: [PATCH] fix(ios): use wall clock time for LiDAR provenance --- .../iphone-lidar/native/RuViewLiDAR/LiDARCaptureManager.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/iphone-lidar/native/RuViewLiDAR/LiDARCaptureManager.swift b/integrations/iphone-lidar/native/RuViewLiDAR/LiDARCaptureManager.swift index e1a15c88..869e8ac9 100644 --- a/integrations/iphone-lidar/native/RuViewLiDAR/LiDARCaptureManager.swift +++ b/integrations/iphone-lidar/native/RuViewLiDAR/LiDARCaptureManager.swift @@ -101,7 +101,7 @@ final class LiDARCaptureManager: NSObject, ObservableObject { depthMeters: meters, confidence: confidence, sequence: 0, - timestamp: frame.timestamp + timestamp: Date().timeIntervalSince1970 ) } } @@ -121,7 +121,7 @@ extension LiDARCaptureManager: ARSessionDelegate { depthMeters: base.depth.meters, confidence: base.depth.confidence, sequence: sequence, - timestamp: frame.timestamp + timestamp: Date().timeIntervalSince1970 ) if let previous = lastTimestamp {