We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f534c8 commit b953c64Copy full SHA for b953c64
adapter/src/main/kotlin/org/javacs/ktda/adapter/KotlinDebugAdapter.kt
@@ -190,7 +190,7 @@ class KotlinDebugAdapter(
190
val hostName = (args["hostName"] as? String)
191
?: throw missingRequestArgument("attach", "hostName")
192
193
- val port = (args["port"] as? String)?.toInt()
+ val port = (args["port"] as? Double)?.toInt()
194
?: throw missingRequestArgument("attach", "port")
195
196
val timeout = (args["timeout"] as? Double)?.toInt()
0 commit comments