Commit 99df522a authored by Skye Yu's avatar Skye Yu

fix: continue decode function error

parent aa55251c
......@@ -330,7 +330,7 @@ function Jensen(log) {
const buff = new ArrayBuffer(RECV_BUFF_SIZE * 2);
let bview = new Uint8Array(buff);
for (let k = 0; k < block.byteLength; k++) {
bview[k + buffLength] = block.getInt8(k);
bview[k] = block.getInt8(k);
}
let result = null;
try {
......
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