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 2c9887a commit 7f79dd4Copy full SHA for 7f79dd4
src/commands/workspaces.ts
@@ -171,6 +171,9 @@ export class ConnectInNewWindowCommand implements Command {
171
}
172
);
173
} catch (e) {
174
+ if (e instanceof vscode.CancellationError) {
175
+ return;
176
+ }
177
this.logService.error(e);
178
this.telemetryService.sendTelemetryException(new WrapError('Error runnning connectInNewWindow command', e));
179
throw e;
@@ -340,6 +343,9 @@ export class ConnectInCurrentWindowCommand implements Command {
340
343
341
344
342
345
346
347
348
349
350
this.telemetryService.sendTelemetryException(new WrapError('Error runnning connectInCurrentWindow command', e));
351
0 commit comments