Merge pull request #305 from Alpha200/fixAccuracy

Fix reading accuracy property
Этот коммит содержится в:
Anton Tananaev
2017-12-30 10:40:06 +13:00
коммит произвёл GitHub
родитель b8cd56439a 4b8fde36d7
Коммит 1e82cbbbf6
+1 -1
Просмотреть файл
@@ -98,7 +98,7 @@ public class DatabaseHelper extends SQLiteOpenHelper {
values.put("altitude", position.getAltitude());
values.put("speed", position.getSpeed());
values.put("course", position.getCourse());
values.put("accuracy", position.getCourse());
values.put("accuracy", position.getAccuracy());
values.put("battery", position.getBattery());
db.insertOrThrow("position", null, values);