Skip to content

Commit

Permalink
Fix scope closing / js access
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudgiuliani committed Jan 9, 2025
1 parent eead325 commit ace7d02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class ScopeRegistry(private val _koin: Koin) {
}

private fun closeAllScopes() {
_scopes.values.toList().forEach { scope ->
_scopes.values.toTypedArray().forEach { scope ->
scope.close()
}
}
Expand Down

0 comments on commit ace7d02

Please sign in to comment.