import from UXP: No issue - Add null check to send packet function in the developer tools server (2e975416)

This commit is contained in:
2022-05-22 07:59:12 +08:00
parent c953ce433e
commit 3f8cd21841
+3 -1
View File
@@ -1488,7 +1488,9 @@ DebuggerServerConnection.prototype = {
},
send(packet) {
this.transport.send(packet);
if (this.transport) {
this.transport.send(packet);
}
},
/**