diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-06-04 13:11:56 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-06-04 13:11:56 +0200 |
| commit | 76a75a268abb1ac8daeffd39087c96cc6fe688c0 (patch) | |
| tree | f4cad3474bf4dbaceff0f8e36483fffee6bfea30 /gui/src/main | |
| parent | 37f9da7e45995d0f78539c800a399c22e7e5f135 (diff) | |
| parent | 99373dfac5020562f85765464523acccad62faaf (diff) | |
| download | mullvadvpn-76a75a268abb1ac8daeffd39087c96cc6fe688c0.tar.xz mullvadvpn-76a75a268abb1ac8daeffd39087c96cc6fe688c0.zip | |
Merge branch 'fix-current-is-supported'
Diffstat (limited to 'gui/src/main')
| -rw-r--r-- | gui/src/main/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts index e905159bfb..d64ff7cf93 100644 --- a/gui/src/main/index.ts +++ b/gui/src/main/index.ts @@ -65,7 +65,7 @@ export interface ICurrentAppVersionInfo { gui: string; daemon: string; isConsistent: boolean; - currentIsBeta: boolean; + isBeta: boolean; } export interface IAppUpgradeInfo extends IAppVersionInfo { @@ -138,7 +138,7 @@ class ApplicationMain { daemon: '', gui: '', isConsistent: true, - currentIsBeta: false, + isBeta: false, }; private upgradeVersion: IAppUpgradeInfo = { @@ -744,7 +744,7 @@ class ApplicationMain { daemon: daemonVersion, gui: guiVersion, isConsistent: daemonVersion === guiVersion, - currentIsBeta: guiVersion.includes('beta'), + isBeta: guiVersion.includes('beta'), }; this.currentVersion = versionInfo; |
