Skip to content

Commit

Permalink
fix: pages not loading in browser after attach browser disconnect (#1934
Browse files Browse the repository at this point in the history
)

Fixes #1795
  • Loading branch information
connor4312 authored Jan 31, 2024
1 parent 171c34d commit 3b01ac9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he

## Nightly (only)

- fix: pages not loading in browser after attach browser disconnect ([#1795](https://github.com/microsoft/vscode-js-debug/issues/1795))
- fix: skipFiles not matching/negating with special chars ([vscode#203408](https://github.com/microsoft/vscode/issues/203408))

## v1.86 (January 2024)
Expand Down
1 change: 1 addition & 0 deletions src/targets/browser/browserAttacher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ export class BrowserAttacher<
if (!targetManager.targetList().length) {
// graceful exit
this._onTerminatedEmitter.fire({ killed: true, code: 0 });
this._connection?.close();
}
});

Expand Down

0 comments on commit 3b01ac9

Please sign in to comment.