Skip to content

Commit 1c321e6

Browse files
committed
Even worse hack to fix CI
1 parent 8635f1d commit 1c321e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/MapLibreSwiftUI/MapViewCoordinator.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ extension MapViewCoordinator: MLNMapViewDelegate {
247247
return
248248
}
249249

250-
MainActor.assumeIsolated {
250+
// FIXME: CI complains about this being unavailable before iOS 17, despite building on iOS 17.2... This is an epic hack to fix it for now. I can only assume this is an issue with Xcode pre-15.3
251+
Task { @MainActor in
251252
updateParentCamera(mapView: mapView, reason: reason)
252253
}
253254
}

0 commit comments

Comments
 (0)