I'm getting following crash. Can't figure out what to look for. Is it related to qos?
Crashed: com.apple.root.utility-qos EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x0000000000000020 Crashed: com.apple.root.utility-qos
If it's related to qos then I've only following code in my project. Can this code be causing this crash? If this is the culprit then how to fix it?
DispatchQueue.global(qos: .userInitiated).async { [weak self] in
guard let _ = self else {
return
}
updateStatusToOnline()
}