mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Fix typo in Id3Decoder
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=163694825
This commit is contained in:
parent
ecd9cff058
commit
516762946d
1 changed files with 1 additions and 1 deletions
|
|
@ -757,7 +757,7 @@ public final class Id3Decoder implements MetadataDecoder {
|
|||
// Invalid or zero length range.
|
||||
return new byte[0];
|
||||
}
|
||||
return Arrays.copyOfRange(data, from, data.length);
|
||||
return Arrays.copyOfRange(data, from, to);
|
||||
}
|
||||
|
||||
private static final class Id3Header {
|
||||
|
|
|
|||
Loading…
Reference in a new issue