Decode kinesis data

pull/218/head
Frostebite 2021-02-07 19:29:59 +00:00
parent 88c7feaa04
commit 7e2216f692
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -172,7 +172,7 @@ class AWS {
} }
static ab2str(buf) { static ab2str(buf) {
return String.fromCharCode.apply(undefined, new Uint8Array(buf)); return String.fromCharCode.apply(undefined, new Uint16Array(buf));
} }
} }
export default AWS; export default AWS;