mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
Removing withResponse flag since it is not needed and was causing a crash on Windows.
This commit is contained in:
parent
b57b6c0a84
commit
a6c05d8f61
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class ScratchLinkDeviceAdapter {
|
|||
const data = Base64Util.uint8ArrayToBase64(commandBuffer);
|
||||
|
||||
return this.scratchLinkSocket
|
||||
.write(this._service, this._commandChar, data, 'base64', true);
|
||||
.write(this._service, this._commandChar, data, 'base64');
|
||||
}
|
||||
|
||||
setup ({onResponse}) {
|
||||
|
|
Loading…
Reference in a new issue