Commit e0fc2b96 authored by Chunchi Che's avatar Chunchi Che

Merge branch 'fix/response' into 'main'

fix send response

See merge request !47
parents 6cb57575 0f2f5d03
......@@ -86,7 +86,7 @@ export class BufferWriter {
}
writeUint32(value: number) {
this.dataView.setUint32(this.offset, value);
this.dataView.setUint32(this.offset, value, this.littleEndian);
this.offset += OFFSET_UINT32;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment