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 2a06895 commit e90d1e4Copy full SHA for e90d1e4
src/plugins/setup.ts
@@ -176,7 +176,9 @@ export default createPlugin(
176
// Activating the license pre-emptively to know its state during the setup process.
177
await activateLicense(outputChannel);
178
const licenseIsValid = await minDelay(
179
- checkIsLicenseValid(outputChannel),
+ activateLicense(outputChannel).then(() =>
180
+ checkIsLicenseValid(outputChannel),
181
+ ),
182
);
183
if (licenseIsValid) {
184
progress.report({
0 commit comments