pinefin

Results 3 comments of pinefin

By the way, it looks like the crash happens on @State variable change, this is in a whole different view. Just the way the stack trace shows it

@danielsaidi It's actually not while touching the GestureButton at all, only while it's visible It could be a race condition because I've only seen it like 2 or 3 times...

This is possible. ``` var switchDisconnectSubscription : AsyncSubscription = peripheral.eventSubscriptions.queue { event, done in guard case .didDisconnect(let error) = event else { return } print("did disconnect: \(String(describing: error))") } ```...