From 8f9b899e125d450d0b1043536c4b58e7fc3740ee Mon Sep 17 00:00:00 2001 From: Daniel Lando Date: Mon, 2 Oct 2023 18:02:26 +0200 Subject: [PATCH] fix: always check for version --- src/App.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 618407163b1..0fb4f169e8c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1106,7 +1106,9 @@ export default { 'info', 15000 ) - } else if (versions?.app !== this.appInfo.appVersion) { + } + + if (versions?.app !== this.appInfo.appVersion) { const current = await this.getRelease( 'zwave-js-ui', 'v' + currentVersion