Closed sentry-io[bot] closed 8 months ago
This issue occurred 8 times within the last 30 days. I'm assigning this a medium priority.
From quick investigation, the ReaderCommentsFollowPresenter
holds an unowned
instance of presentingViewController
which was already deallocated when the sourceForTracks()
method was called. The stack trace points to a Notice action, so it's possible that the user dismissed the screen while the notice was still shown, and the action button was pressed after that.
A quick fix would be to change presentingViewController
to a weak
ownership. However, we'd need to put guard conditions on all the methods that call this instance.
Sentry Issue: JETPACK-IOS-1796
Sentry Issue: JETPACK-IOS-W96