diff options
| author | David Lönnhager <david.l@mullvad.net> | 2020-03-10 12:09:22 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2020-03-11 12:11:10 +0100 |
| commit | 5fc671f29678a550fb7288dd49a92bb7ecd0095d (patch) | |
| tree | a4a7fe06bac55431032ee13f2bd4eb21934dbe0f /gui/src/renderer/components | |
| parent | b2c0e7fbfe723942ddd675302d06d66a37ab1bbe (diff) | |
| download | mullvadvpn-5fc671f29678a550fb7288dd49a92bb7ecd0095d.tar.xz mullvadvpn-5fc671f29678a550fb7288dd49a92bb7ecd0095d.zip | |
Use beta program flag in the GUI
Diffstat (limited to 'gui/src/renderer/components')
| -rw-r--r-- | gui/src/renderer/components/NotificationArea.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/components/NotificationArea.tsx b/gui/src/renderer/components/NotificationArea.tsx index f08eefbb75..678341f079 100644 --- a/gui/src/renderer/components/NotificationArea.tsx +++ b/gui/src/renderer/components/NotificationArea.tsx @@ -175,7 +175,7 @@ export default class NotificationArea extends Component<IProps, State> { }; } - if (version.currentIsOutdated && version.nextUpgrade) { + if (version.nextUpgrade && version.nextUpgrade !== version.current) { return { visible: true, type: 'update-available', |
