Fix for issue #380: AAPS SMB Mode: doesn't work with XDrip anymore - in latest Dev Versions

https://github.com/nightscout/AndroidAPS/issues/380
This commit is contained in:
swissalpine 2021-03-03 11:00:48 +01:00 committed by GitHub
parent 17ceb42df8
commit 68a665bbeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,6 +77,7 @@ data class GlucoseValue(
@SerializedName("DexcomG5") DEXCOM_G5_XDRIP("DexcomG5"),
@SerializedName("G6 Native") DEXCOM_G6_NATIVE_XDRIP("G6 Native"),
@SerializedName("G5 Native") DEXCOM_G5_NATIVE_XDRIP("G5 Native"),
@SerializedName("G6 Native / G5 Native") DEXCOM_G6_G5_NATIVE_XDRIP("G6 Native / G5 Native"),
@SerializedName("Network libre") LIBRE_1_NET("Network libre"),
@SerializedName("BlueReader") LIBRE_1_BLUE("BlueReader"),
@SerializedName("Transmiter PL") LIBRE_1_PL("Transmiter PL"),
@ -104,4 +105,4 @@ data class GlucoseValue(
fun fromString(source: String?) = values().firstOrNull { it.text == source } ?: UNKNOWN
}
}
}
}