Browse Source

Fixes prerelease notification to only show once (as intended 🤦)

main
Eric Amodio 1 year ago
parent
commit
f5e98f2705
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/extension.ts

+ 1
- 1
src/extension.ts View File

@ -325,7 +325,7 @@ async function showWelcomeOrWhatsNew(container: Container, version: string, prev
return;
}
const majorPrerelease = satisfies(previous, '< 2023.6.0899');
const majorPrerelease = satisfies(previous, '< 2023.6.0800');
if (current.major === previous.major && !majorPrerelease) return;

Loading…
Cancel
Save