1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-31 02:54:29 +02:00

Better check for fw version major (#30)

This commit is contained in:
cpfeiffer 2015-08-04 23:08:40 +02:00
parent 910d9ef398
commit e92c9dbbb5

View File

@ -38,7 +38,7 @@ public class MiBandFWHelper {
try (InputStream in = new BufferedInputStream(cr.openInputStream(uri))){
this.fw = FileUtils.readAll(in, 1024 * 1024); // 1 MB
if (fw.length > firmwareVersionMajor && fw[firmwareVersionMajor] != 1) {
if (fw.length <= firmwareVersionMajor || fw[firmwareVersionMajor] != 1) {
throw new IOException("Firmware major version should be 1, probably this isn't a MiBand firmware.");
}
} catch (Exception e) {