Middle+
What happens to the scope if an error occurs during image loading inside it?
sobes.tech AI
Answer from AI
The scope will be cancelled. This is standard behavior for Kotlin Coroutines scopes: when an exception occurs inside a scope, all child coroutines are automatically cancelled, and the exception propagates up the coroutine hierarchy, cancelling parent scopes if it is not caught.