update.ts: Simplify comparison

This commit is contained in:
Anmol Sethi 2020-11-23 21:09:27 -05:00
parent f74f1721e6
commit be37821ab9
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ export class UpdateProvider {
public isLatestVersion(latest: Update): boolean { public isLatestVersion(latest: Update): boolean {
logger.debug("comparing versions", field("current", version), field("latest", latest.version)) logger.debug("comparing versions", field("current", version), field("latest", latest.version))
try { try {
return latest.version === version || semver.lt(latest.version, version) return semver.lte(latest.version, version)
} catch (error) { } catch (error) {
return true return true
} }