[Winkey] See if this changes changing

这个提交包含在:
Peter Goodhall 2023-08-07 13:56:29 +01:00
父节点 1498f74072
当前提交 84c808afa0

查看文件

@ -160,7 +160,7 @@ async function writeToStream(line) {
async function writeToByte(line) {
const writer = outputStream.getWriter();
const data = new Uint8Array([line]);
writer.write(line);
writer.write(data);
writer.releaseLock();
}