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 ea0b13a commit 416a049Copy full SHA for 416a049
src/utils/manage.ts
@@ -183,7 +183,12 @@ export async function stopLocalStack(
183
184
export async function openLicensePage() {
185
const url = new URL("https://app.localstack.cloud/settings/auth-tokens");
186
- await env.openExternal(Uri.parse(url.toString()));
+ const openSuccessful = await env.openExternal(Uri.parse(url.toString()));
187
+ if (!openSuccessful) {
188
+ window.showErrorMessage(
189
+ `Open LocalStack License page in browser by entering the URL manually: ${url.toString()}`,
190
+ );
191
+ }
192
}
193
194
async function showInformationMessage(
0 commit comments