mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Don't crash when no firmware version available yet
This commit is contained in:
+6
-4
@@ -142,11 +142,13 @@ 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 (version.compareTo(new Version("0.0.8.74")) >= 0) {
|
||||
supportsConditionString = true;
|
||||
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user