Skip to content

Commit 3108fbd

Browse files
authored
Passed arguments everywhere to buffer.readUInt32BE() to avoid some errors
webpack/node-libs-browser#93 Webpack 4 now is a stable version. It uses node-libs for Buffer polyfill that is not completely compatible with the nodejs implemintation. In node-libs a lot of optional arguments are required, so we get an offset error in the browser calling buffer.readUInt32BE without an argument.
1 parent 9ed05f6 commit 3108fbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ NodeID3.prototype.readPopularimeterFrame = function(frame) {
11051105
if(counterIndex < frame.length) {
11061106
let value = frame.slice(counterIndex, frame.length)
11071107
if(value.length >= 4) {
1108-
tags.counter = value.readUInt32BE()
1108+
tags.counter = value.readUInt32BE(0)
11091109
}
11101110
}
11111111
}
@@ -1266,4 +1266,4 @@ NodeID3.prototype.readChapterFrame = function(frame) {
12661266
}
12671267

12681268
return tags
1269-
}
1269+
}

0 commit comments

Comments
 (0)