Removing withResponse flag since it is not needed and was causing a crash on Windows.

This commit is contained in:
Evelyn Eastmond 2019-01-15 11:43:08 -05:00
parent b57b6c0a84
commit a6c05d8f61

View file

@ -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}) {