Skip to content

Commit b4cfb89

Browse files
committed
Fix disconnect when inspecting another chrome extension
1 parent 1f84de8 commit b4cfb89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/extension/background/messaging.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function initInstance(msg, port) {
3232
}
3333

3434
function disconnect(port) {
35-
if (!port.sender.tab && !port.id) {
35+
if (!port.sender.tab && !port.sender.id) {
3636
monitorInstances(false);
3737
return;
3838
}

0 commit comments

Comments
 (0)