Skip to content

Commit

Permalink
fix: only register enabled extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelonion committed Nov 24, 2024
1 parent a9bd9b4 commit 8cf32f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ControllerListener(
init {
scope.launch {
controllerExtensions.collect { extensions ->
extensions?.forEach {
extensions?.filter { it.metadata.enabled }?.forEach {
launch {
registerController(it)
}
Expand Down

0 comments on commit 8cf32f5

Please sign in to comment.