You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Core.swift on line 130 there is self?.removeObserver(observer!) but I believe directly after this you should have: observer = nil
You do this currently:
self?.removeObserver(observer!)
observer = nil
for lines 136-137 and 172-173 but I think its missing in the above scenario. I notice when I use Xcode Instruments > Leaks that I see memory leaks. Adding the above removes the leaks for me.
The text was updated successfully, but these errors were encountered:
In Core.swift on line 130 there is
self?.removeObserver(observer!)
but I believe directly after this you should have:observer = nil
You do this currently:
for lines 136-137 and 172-173 but I think its missing in the above scenario. I notice when I use Xcode Instruments > Leaks that I see memory leaks. Adding the above removes the leaks for me.
The text was updated successfully, but these errors were encountered: