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
animatable.snapTo(OPAQUE_ALPHA) is suspending, and should not be invoked in the finally clause, since if the coroutine has been cancelled, any call to a suspending function will immediately throw CancellationException, thus not performing the final animation move cleanup.
This can be fixed by invoking the suspending function non-cancellable:
glide/integration/compose/src/main/java/com/bumptech/glide/integration/compose/Transition.kt
Line 144 in cbdc1e7
animatable.snapTo(OPAQUE_ALPHA)
is suspending, and should not be invoked in the finally clause, since if the coroutine has been cancelled, any call to a suspending function will immediately throw CancellationException, thus not performing the final animation move cleanup.This can be fixed by invoking the suspending function non-cancellable:
The text was updated successfully, but these errors were encountered: