File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 7
7
- Allow reading metadata generated by ` dev_compiler ` from file to supply
8
8
module information to ` Dwds ` .
9
9
- Hide JavaScript type errors when hovering over text in the debugger.
10
+ - Fix an issue where reusing a connection could cause a null error.
10
11
11
12
** Breaking Changes:**
12
13
- Require access to the ` .ddc_merged_metadata ` file.
Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ class DevHandler {
388
388
if (canReuseConnection) {
389
389
// Disconnect any old connection (eg. those in the keep-alive waiting
390
390
// state when reloading the page).
391
- existingAppConection.shutDown ();
391
+ existingAppConection? .shutDown ();
392
392
services.chromeProxyService? .destroyIsolate ();
393
393
394
394
// Reconnect to existing service.
You can’t perform that action at this time.
0 commit comments