Fix latest version check (#3349)

master
Mark Haslinghuis 2023-02-22 03:07:34 +01:00 committed by GitHub
parent 6618378e8d
commit 4b9fab6635
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ function notifyOutdatedVersion(data) {
if (data.isCurrent === false && data.updatedVersion !== undefined) {
CONFIGURATOR.latestVersion = data.UpdatedVersion.Version;
CONFIGURATOR.latestVersionReleaseUrl = data.UpdatedVersion.Url;
CONFIGURATOR.latestVersion = data.updatedVersion.version;
CONFIGURATOR.latestVersionReleaseUrl = data.updatedVersion.url;
const message = i18n.getMessage('configuratorUpdateNotice', [CONFIGURATOR.latestVersion, CONFIGURATOR.latestVersionReleaseUrl]);
gui_log(message);