Skip to content

Commit

Permalink
Fix ID3 WXXX URL parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Walch committed Aug 31, 2020
1 parent a1c8f0e commit 27dbaff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/demux/id3.js
Expand Up @@ -270,7 +270,7 @@ class ID3 {
}

let index = 1;
const description = ID3._utf8ArrayToStr(frame.data.subarray(index));
const description = ID3._utf8ArrayToStr(frame.data.subarray(index), true);

index += description.length + 1;
const value = ID3._utf8ArrayToStr(frame.data.subarray(index));
Expand Down

0 comments on commit 27dbaff

Please sign in to comment.