Try fix issue where empty GPX track is offered to be saved

This commit is contained in:
sonora 2015-04-16 15:48:02 +02:00
parent b72fe771c6
commit 6851fd3be9

View file

@ -136,7 +136,8 @@ public class SavingTrackHelper extends SQLiteOpenHelper {
if (db != null) {
try {
Cursor q = db.query(false, TRACK_NAME, new String[0], null, null, null, null, null, null);
boolean has = q.moveToFirst();
//Looks like db is created even if user cancels out of "start recording" dialogue, hence also ask if db contains track points at all here
boolean has = q.moveToFirst() && (getLastTrackPointTime() > 0L);
q.close();
if (has) {
return true;