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 c9eb197 commit 34eb0b3Copy full SHA for 34eb0b3
src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
@@ -407,7 +407,7 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
407
// Open the URI
408
that.logService.info(`Opening ${uri.toString()}`);
409
await that.openerService.open(uri, { openExternal: true });
410
- } else if (!shouldStoreEditSession && uri !== 'noDestinationUri') {
+ } else if ((!shouldStoreEditSession || ref === undefined) && uri !== 'noDestinationUri') {
411
// Open the URI without an edit session ref
412
413
0 commit comments