We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140a0c5 commit c7f52baCopy full SHA for c7f52ba
packages/compass/src/main/auto-update-manager.ts
@@ -635,8 +635,9 @@ class CompassAutoUpdateManager {
635
try {
636
const response = await this.fetch((await this.getUpdateCheckURL()).href);
637
638
-
639
- assert(response.ok);
+ if (response.status !== 200) {
+ return { available: false };
640
+ }
641
642
643
const json = await response.json();
0 commit comments