aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/ctx.ts
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-08-17 12:56:27 +0100
committervsrs <[email protected]>2020-08-17 12:56:27 +0100
commit1eed036a6e68aee6128d099e3a8f2c06a90b846b (patch)
tree0df6d2d6cee256c4dcab1ba1e1a7d3bdafe2d663 /editors/code/src/ctx.ts
parentb050937c1071e68a4ade69375f1f17b703cafb02 (diff)
Fix StatusNotification
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index 6e767babf..543f7e02e 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -36,7 +36,7 @@ export class Ctx {
36 36
37 res.pushCleanup(client.start()); 37 res.pushCleanup(client.start());
38 await client.onReady(); 38 await client.onReady();
39 client.onNotification(ra.status, (status) => res.setStatus(status)); 39 client.onNotification(ra.status, (params) => res.setStatus(params.status));
40 return res; 40 return res;
41 } 41 }
42 42