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 67c091b commit cabeaccCopy full SHA for cabeacc
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+### 2.1.4 | 2022-06-10
4
+
5
+- Fix uncaught error when failing to connect to the extension service
6
7
### 2.1.3 | 2022-03-04
8
9
- Support arm64 builds on Linux
lib/request.ts
@@ -36,9 +36,7 @@ export async function getJSON<T>(api: string): Promise<T> {
36
}
37
});
38
39
- res.on('error', err => {
40
- reject(err);
41
- });
42
+ res.on('error', reject);
+ }).on('error', reject);
43
44
package.json
@@ -1,6 +1,6 @@
{
"name": "@vscode/test-electron",
- "version": "2.1.3",
+ "version": "2.1.4",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
0 commit comments