mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-29 05:16:51 +01:00
Don't crash when no firmware version available yet
This commit is contained in:
parent
55bf9ef784
commit
f5934dfb3b
@ -142,12 +142,14 @@ public class AmazfitBipSupport extends MiBand2Support {
|
||||
public void onSendWeather(WeatherSpec weatherSpec) {
|
||||
try {
|
||||
TransactionBuilder builder = performInitialized("Sending weather forecast");
|
||||
Version version = new Version(gbDevice.getFirmwareVersion());
|
||||
|
||||
boolean supportsConditionString = false;
|
||||
|
||||
if (gbDevice.getFirmwareVersion() != null) {
|
||||
Version version = new Version(gbDevice.getFirmwareVersion());
|
||||
if (version.compareTo(new Version("0.0.8.74")) >= 0) {
|
||||
supportsConditionString = true;
|
||||
}
|
||||
}
|
||||
|
||||
final byte NR_DAYS = 2;
|
||||
int bytesPerDay = 4;
|
||||
|
Loading…
Reference in New Issue
Block a user