1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-12-01 06:22:55 +01:00

Pebble: ensure a better error message if someone tries to install a FW 1.x pbw

This commit is contained in:
Andreas Shimokawa 2017-02-05 22:50:42 +01:00
parent b7bad268c2
commit b3cddebdbb

View File

@ -204,6 +204,9 @@ public class PBWReader {
} }
app = new GBDeviceApp(appUUID, appName, appCreator, appVersion, appType); app = new GBDeviceApp(appUUID, appName, appCreator, appVersion, appType);
} }
else if (!isFirmware) {
isValid = false;
}
} }
} }