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 f7f396c commit 759af74Copy full SHA for 759af74
CHANGELOG.md
@@ -11,6 +11,10 @@
11
12
- improved message while loading the workspace
13
14
+### Fixed
15
+
16
+- URI protocol handler is now able to switch to the Coder provider even if the last opened provider was something else
17
18
## 0.3.2 - 2025-06-25
19
20
### Changed
src/main/kotlin/com/coder/toolbox/util/CoderProtocolHandler.kt
@@ -55,6 +55,9 @@ open class CoderProtocolHandler(
55
return
56
}
57
58
+ // this switches to the main plugin screen, even
59
+ // if last opened provider was not Coder
60
+ context.envPageManager.showPluginEnvironmentsPage()
61
if (shouldWaitForAutoLogin) {
62
isInitialized.waitForTrue()
63
0 commit comments