Fix incorrect reporting that an update failed

This commit is contained in:
Asher 2020-04-02 14:48:15 -05:00
parent e480f6527e
commit 5fc00acc39
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 2 additions and 6 deletions

View File

@ -512,10 +512,10 @@ index eab8591492..26668701f7 100644
options.logService.error(`${logPrefix} socketFactory.connect() failed. Error:`);
diff --git a/src/vs/server/browser/client.ts b/src/vs/server/browser/client.ts
new file mode 100644
index 0000000000..96fbd4b0bb
index 0000000000..a27a6f3a45
--- /dev/null
+++ b/src/vs/server/browser/client.ts
@@ -0,0 +1,270 @@
@@ -0,0 +1,266 @@
+import { Emitter } from 'vs/base/common/event';
+import { URI } from 'vs/base/common/uri';
+import { localize } from 'vs/nls';
@ -696,10 +696,6 @@ index 0000000000..96fbd4b0bb
+ }
+
+ const json = await response.json();
+ if (!json.isLatest) {
+ throw new Error("Update failed");
+ }
+
+ (services.get(INotificationService) as INotificationService).info(`Updated to ${json.version}`);
+ };
+