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
While documentation says it's totally safe from data-race, it's not true at some situations.
Cannot ensure when, but app crashes at random time when accessing state.
(will comment detailed report when it happens again)
subscript seems suspicious because it's accessing state directly by ReferenceWritableKeyPath, not through StateHandler which is safe as an actor.
The text was updated successfully, but these errors were encountered:
We should use
@unchecked Sendable
to use this framework.While documentation says it's totally safe from data-race, it's not true at some situations.
Cannot ensure when, but app crashes at random time when accessing state.
(will comment detailed report when it happens again)
subscript
seems suspicious because it's accessingstate
directly byReferenceWritableKeyPath
, not throughStateHandler
which is safe as an actor.The text was updated successfully, but these errors were encountered: