Fix typo in Id3Decoder

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=163694825
This commit is contained in:
olly 2017-07-31 08:08:29 -07:00 committed by Oliver Woodman
parent 2b5bd800e3
commit bf4a460e4c

View File

@ -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 {