Skip to content

Commit b39d1bd

Browse files
committed
version_hint should be first element of unpacked struct
1 parent f228420 commit b39d1bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esm/misc-low-level.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { _structure_size, _padded_size, _unpack_struct_from, struct, assert, _un
22

33
export class SuperBlock {
44
constructor(fh, offset) {
5-
let version_hint = struct.unpack_from('<B', fh, offset + 8);
5+
let version_hint = struct.unpack_from('<B', fh, offset + 8)[0];
66
var contents;
77
if (version_hint == 0) {
88
contents = _unpack_struct_from(SUPERBLOCK_V0, fh, offset);

0 commit comments

Comments
 (0)