mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 14:58:59 +00:00
import from UXP: No issue - Add null check to send packet function in the developer tools server (2e975416)
This commit is contained in:
@@ -1488,7 +1488,9 @@ DebuggerServerConnection.prototype = {
|
||||
},
|
||||
|
||||
send(packet) {
|
||||
this.transport.send(packet);
|
||||
if (this.transport) {
|
||||
this.transport.send(packet);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user