fix(id3v2reader): use correct header size in readU24

This commit is contained in:
Sturlen
2026-05-14 13:54:51 +02:00
parent 8bfedb0a88
commit aa38385cae
+1 -1
View File
@@ -488,7 +488,7 @@ export class Id3V2Reader {
readU24() {
const high = this.view.getUint16(this.pos, false);
const low = this.view.getUint8(this.pos + 1);
const low = this.view.getUint8(this.pos + 2);
this.pos += 3;
return high * 0x100 + low;
}