mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
Another ID3 bug fix
This commit is contained in:
parent
f1e3d3f244
commit
1ffe7753c6
1 changed files with 1 additions and 0 deletions
|
|
@ -560,6 +560,7 @@ public final class Id3Decoder implements MetadataDecoder {
|
|||
int startIndex = id3Data.getPosition();
|
||||
int endIndex = indexOfZeroByte(id3Data.data, startIndex);
|
||||
children[i] = new String(id3Data.data, startIndex, endIndex - startIndex, "ISO-8859-1");
|
||||
id3Data.setPosition(endIndex + 1);
|
||||
}
|
||||
|
||||
ArrayList<Id3Frame> subFrames = new ArrayList<>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue