mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-28 04:46:51 +01:00
last arg of copyOfRange() is index, not length!
This commit is contained in:
parent
f7b71c1f96
commit
275839a7f4
@ -60,10 +60,8 @@ public abstract class AbstractMiFirmwareInfo {
|
||||
|
||||
public abstract boolean isGenerallyCompatibleWith(GBDevice device);
|
||||
|
||||
public
|
||||
@NonNull
|
||||
byte[] getFirmwareBytes() {
|
||||
return Arrays.copyOfRange(wholeFirmwareBytes, getFirmwareOffset(), getFirmwareLength());
|
||||
public @NonNull byte[] getFirmwareBytes() {
|
||||
return Arrays.copyOfRange(wholeFirmwareBytes, getFirmwareOffset(), getFirmwareOffset() + getFirmwareLength());
|
||||
}
|
||||
|
||||
public int getFirmwareVersionMajor() {
|
||||
|
Loading…
Reference in New Issue
Block a user