Try fix issue where empty GPX track is offered to be saved
This commit is contained in:
parent
b72fe771c6
commit
6851fd3be9
1 changed files with 2 additions and 1 deletions
|
@ -136,7 +136,8 @@ public class SavingTrackHelper extends SQLiteOpenHelper {
|
||||||
if (db != null) {
|
if (db != null) {
|
||||||
try {
|
try {
|
||||||
Cursor q = db.query(false, TRACK_NAME, new String[0], null, null, null, null, null, null);
|
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();
|
q.close();
|
||||||
if (has) {
|
if (has) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue