From 422151bc23ee53a463126e8c9156bab6ad1969ab Mon Sep 17 00:00:00 2001 From: paregi12 Date: Mon, 18 May 2026 12:00:34 +0530 Subject: [PATCH] fix(plugins): fix receiver type mismatch in getPluginSettingsLayout --- .../com/nuvio/app/features/plugins/runtime/PluginRuntime.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composeApp/src/fullCommonMain/kotlin/com/nuvio/app/features/plugins/runtime/PluginRuntime.kt b/composeApp/src/fullCommonMain/kotlin/com/nuvio/app/features/plugins/runtime/PluginRuntime.kt index cfd72e18e..9d1da1486 100644 --- a/composeApp/src/fullCommonMain/kotlin/com/nuvio/app/features/plugins/runtime/PluginRuntime.kt +++ b/composeApp/src/fullCommonMain/kotlin/com/nuvio/app/features/plugins/runtime/PluginRuntime.kt @@ -99,7 +99,7 @@ internal object PluginRuntime { """.trimIndent() var captureResult: String? = null - jsRuntime.function("__capture_settings_result") { args: Array -> + function("__capture_settings_result") { args: Array -> captureResult = args.getOrNull(0)?.toString() null }