diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-09-09 12:44:44 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-09-09 12:44:44 +0200 |
| commit | 8f30eed23edceafcbf25ad103b1704a6ef139208 (patch) | |
| tree | 312917f41d9f9cd1938867ccf876b3200f2df713 /gui/src/renderer/components | |
| parent | d8a2cffae6005837a2974e60ae78b7d3830123bd (diff) | |
| parent | c39df4f486b8876fc7f97ba67c3b53dbe5bdf426 (diff) | |
| download | mullvadvpn-8f30eed23edceafcbf25ad103b1704a6ef139208.tar.xz mullvadvpn-8f30eed23edceafcbf25ad103b1704a6ef139208.zip | |
Merge branch 'version-check-outdated'
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 9e4c971a89..a0cc9e08e3 100644 --- a/gui/src/renderer/components/NotificationArea.tsx +++ b/gui/src/renderer/components/NotificationArea.tsx @@ -176,7 +176,7 @@ export default class NotificationArea extends Component<IProps, State> { }; } - if (!version.upToDate && version.nextUpgrade) { + if (version.currentIsOutdated && version.nextUpgrade) { return { visible: true, type: 'update-available', |
