1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 13:58:49 +00:00

No issue - Add null check to send packet function in the developer tools server

This resolves some of the useless log spam thrown in the browser console by the developer tools.
This commit is contained in:
FranklinDM
2022-05-05 10:49:08 +08:00
committed by roytam1
parent f0e208a861
commit 2e975416bf
+3 -1
View File
@@ -1462,7 +1462,9 @@ DebuggerServerConnection.prototype = {
},
send(packet) {
this.transport.send(packet);
if (this.transport) {
this.transport.send(packet);
}
},
/**