Skip to content

Commit

Permalink
fix: always check for version
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Oct 2, 2023
1 parent 55a2f91 commit 8f9b899
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f9b899

Please sign in to comment.