core-3nweb-client-lib 0.29.0 → 0.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -198,7 +198,7 @@ var extAttrs;
|
|
|
198
198
|
}
|
|
199
199
|
extAttrs.readNamedAttr = readNamedAttr;
|
|
200
200
|
function parseTypeByte(b) {
|
|
201
|
-
const type = ((b & 0b11111000) >>
|
|
201
|
+
const type = ((b & 0b11111000) >> 3);
|
|
202
202
|
const nameLen = ((b & 0b00000100) >> 2) + 1;
|
|
203
203
|
const contentLen = (b & 0b00000011) + 1;
|
|
204
204
|
return { type, contentLen, nameLen };
|