Skip to content

Commit 81467c1

Browse files
committed
fix: discard @ from workspaceOwner placeholder
1 parent 9923a8b commit 81467c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/coder/toolbox/CoderRemoteEnvironment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class CoderRemoteEnvironment(
9494
val urlTemplate = context.settingsStore.workspaceViewUrl
9595
?: client.url.withPath("/@${workspace.ownerName}/${workspace.name}").toString()
9696
val url = urlTemplate
97-
.replace("\$workspaceOwner", "@${workspace.ownerName}")
97+
.replace("\$workspaceOwner", "${workspace.ownerName}")
9898
.replace("\$workspaceName", workspace.name)
9999
context.desktop.browse(
100100
url

0 commit comments

Comments
 (0)