Fixed issue with O2sat data not being recorded to data sharing database - V4.0.6
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="uk.org.openseizuredetector"
|
||||
android:versionCode="101"
|
||||
android:versionName="4.0.5">
|
||||
android:versionCode="102"
|
||||
android:versionName="4.0.6">
|
||||
<!-- android:allowBackup="false" -->
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||
|
||||
@@ -272,7 +272,7 @@ public abstract class SdDataSource {
|
||||
mSdData.mHR = -1;
|
||||
}
|
||||
try {
|
||||
mSdData.mO2Sat = dataObject.getDouble("O2Sat");
|
||||
mSdData.mO2Sat = dataObject.getDouble("O2sat");
|
||||
} catch (JSONException e) {
|
||||
// if we get 'null' O2 Saturation (For example if the oxygen sensor is not working)
|
||||
mSdData.mO2Sat = -1;
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
<string name="app_name">OpenSeizureDetector</string>
|
||||
<string name="changelog">
|
||||
"\n
|
||||
\nV4.0.5 - fixed issue with O2 saturation data not being recorded to data sharing database.
|
||||
\nV4.0.4
|
||||
- Introduced the <b>Data Sharing</b> feature to allow users to share their seizure and false alarm data
|
||||
with researchers to help improve the system.<br/>
|
||||
|
||||
Reference in New Issue
Block a user