Skip to content

Commit

Permalink
fix: HealthStore deleteOutcomes should return on success
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 committed Mar 2, 2025
1 parent 826f682 commit 9d16ede
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ public extension OCKHealthKitPassthroughStore {
reason: "Failed to delete HealthKit samples. Error: \(error.localizedDescription)")))
}
return
} else {
callbackQueue.async {
completion?(.success(outcomes))
}
}
}
} catch {
Expand Down

0 comments on commit 9d16ede

Please sign in to comment.