Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious committed Oct 9, 2024
2 parents 3e92f33 + aabd74b commit c99cda6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/updater/autoupdater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function setupAutoUpdate(api: IExtensionApi) {

// is update version greater than our current version?

if (semver.satisfies(updateInfo.version, `>${autoUpdater.currentVersion.version}`)) {
if (semver.satisfies(updateInfo.version, `>${autoUpdater.currentVersion.version}`, { includePrerelease: true })) {

// normal upgrade

Expand Down

0 comments on commit c99cda6

Please sign in to comment.