Skip to content

Commit

Permalink
Merge pull request #3006 from video-dev/patch/v0.14.x
Browse files Browse the repository at this point in the history
Fix ID3 WXXX URL parsing
  • Loading branch information
robwalch committed Sep 1, 2020
2 parents e413023 + 27dbaff commit c3e2d86
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 c3e2d86

Please sign in to comment.