summaryrefslogtreecommitdiffstats
path: root/subsurface-core
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-10 19:18:28 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-10 20:44:22 -0800
commit956b8643194137ade01aac095857066db30b7f73 (patch)
tree9df4c82d720838eaa91e548b5bb32c0da968f3fb /subsurface-core
parent4d4f5ed89be0a6bf77069ecb490953ea58f358dc (diff)
downloadsubsurface-956b8643194137ade01aac095857066db30b7f73.tar.gz
GPS data: if deleting on server fails, remember to try again
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core')
-rw-r--r--subsurface-core/gpslocation.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/subsurface-core/gpslocation.cpp b/subsurface-core/gpslocation.cpp
index ac694430f..361a1b23c 100644
--- a/subsurface-core/gpslocation.cpp
+++ b/subsurface-core/gpslocation.cpp
@@ -477,7 +477,8 @@ void GpsLocation::deleteFixesFromServer()
status(QString("Server response:") + reply->readAll());
}
} else {
- status("Deleting on the server timed out");
+ status("Deleting on the server timed out - try again later");
+ m_deletedTrackers.prepend(gt);
break;
}
reply->deleteLater();