This repository was archived by the owner on Jun 13, 2023. It is now read-only.
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
app crash at with message message sent to deallocated instance . #214
Open
Description
fileprivate func subscriptionRecord(_ requestId: RequestId) -> SubscriptionRecord? {
guard
let recordIndex = self.subscriptions.index(where: { $0.requestId == requestId }) else {
return nil
}
let record = self.subscriptions[recordIndex]
return record.subscriptionHandler != nil ? record : nil
}
app crash at return statement.