Skip to content

Commit

Permalink
JS-4458: fix auto-update when not authorized
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3orblade committed Apr 26, 2024
1 parent 7c844e1 commit 5606290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/js/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Api {
};

updateCheck (win) {
if (this.isPinChecked) {
if (this.isPinChecked || !this.account) {
UpdateManager.checkUpdate(false);
};
};
Expand Down

0 comments on commit 5606290

Please sign in to comment.