Open
Description
Describe the bug
Accessing state
or stateOrNull
kicks of internal work that interferes with the cleanup process that runs onDipose
. It adds a listener to a list of listeners that is at the same time being iterated over for cleanup, causing a ConcurrentModificationError.
Expected behavior
There should either be an Exception immediately thrown upon accessing state
or stateOrNull
during onDispose
, or during onDipose
state
and stateOrNull
would just return the last state they had, without trying to refresh them.