Skip to content

Commit

Permalink
Temporaily disable the SnoopSnitch pipeline due to reported crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukbukkit committed Oct 22, 2024
1 parent 4fc4518 commit 41123d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ private func getCountryCode(latitude: Double, longitude: Double) async -> Countr
let placemarks = try await CLGeocoder().reverseGeocodeLocation(location.toCL())
for placemark in placemarks {
if let isoCountryCode = placemark.isoCountryCode {
// TODO: Something is crashing here (I guess)
countryCodeCache[location] = isoCountryCode
return .found(isoCountryCode)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import OSLog
let primaryVerificationPipeline = CGVerificationPipeline.instance
let activeVerificationPipelines: [VerificationPipeline] = [
CGVerificationPipeline.instance,
SNVerificationPipeline.instance
// SNVerificationPipeline.instance - Temporarily disabled
]

struct VerificationStageRelatedObjects {
Expand Down

0 comments on commit 41123d2

Please sign in to comment.