mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09: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:
parent
f0e208a861
commit
2e975416bf
1 changed files with 3 additions and 1 deletions
|
|
@ -1462,7 +1462,9 @@ DebuggerServerConnection.prototype = {
|
|||
},
|
||||
|
||||
send(packet) {
|
||||
this.transport.send(packet);
|
||||
if (this.transport) {
|
||||
this.transport.send(packet);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue