Skip to content

Commit 8695a45

Browse files
Pass namespace differently to Studio add-in (fix #1249) (#1250)
Previously passed as $NAMESPACE but this only works for first page of a multi-page add-in such as the SOAP wizard.
1 parent 9c52efd commit 8695a45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/serverActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ export async function serverActions(): Promise<void> {
251251
if (addin) {
252252
const token = await getCSPToken(api, addin.id);
253253
vscode.env.openExternal(
254-
vscode.Uri.parse(`${serverUrl}${addin.id}?$NAMESPACE=${nsEncoded}&CSPCHD=${token}`)
254+
vscode.Uri.parse(`${serverUrl}${addin.id}?Namespace=${nsEncoded}&CSPCHD=${token}`)
255255
);
256256
}
257257
}

0 commit comments

Comments
 (0)