Andrey Belonogov

Results 2 comments of Andrey Belonogov

Hi @choulepoka I created backward compatible fix of Swift6 crashes when non-main threaded completion is used in LDClient. https://github.com/launchdarkly/ios-client-sdk/pull/454

Hi @choulepoka, @ThrownToys, @tanderson-ld There is also workaround, you need wrap call into function with @Sendable completion. ``` swift func startFromSwift6(completion: (@Sendable(_ timedOut: Bool) -> Void)? = nil) { LDClient.start(config:...