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:
@@ -1462,7 +1462,9 @@ DebuggerServerConnection.prototype = {
|
||||
},
|
||||
|
||||
send(packet) {
|
||||
this.transport.send(packet);
|
||||
if (this.transport) {
|
||||
this.transport.send(packet);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user