diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-10 19:18:28 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-10 20:44:22 -0800 |
commit | 956b8643194137ade01aac095857066db30b7f73 (patch) | |
tree | 9df4c82d720838eaa91e548b5bb32c0da968f3fb /subsurface-core/gpslocation.cpp | |
parent | 4d4f5ed89be0a6bf77069ecb490953ea58f358dc (diff) | |
download | subsurface-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/gpslocation.cpp')
-rw-r--r-- | subsurface-core/gpslocation.cpp | 3 |
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(); |