diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2011-12-10 11:57:01 +0100 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2011-12-10 11:57:01 +0100 |
| commit | 5d98685a85d8fd46f5c0768c838c74db6fae7558 (patch) | |
| tree | 832314eaf940b28a60a58c9e3117e667d18fe611 /main/src | |
| parent | a478dcd9ebe7b681729451d3343c966fea6c8dc0 (diff) | |
| download | cgeo-5d98685a85d8fd46f5c0768c838c74db6fae7558.zip cgeo-5d98685a85d8fd46f5c0768c838c74db6fae7558.tar.gz cgeo-5d98685a85d8fd46f5c0768c838c74db6fae7558.tar.bz2 | |
#612: Incorrect storage time in cache details (experimental change)
Diffstat (limited to 'main/src')
| -rw-r--r-- | main/src/cgeo/geocaching/cgCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgCache.java b/main/src/cgeo/geocaching/cgCache.java index 34b2b26..ce96d58 100644 --- a/main/src/cgeo/geocaching/cgCache.java +++ b/main/src/cgeo/geocaching/cgCache.java @@ -113,7 +113,7 @@ public class cgCache implements ICache { updated = System.currentTimeMillis(); if (!detailed && other.detailed) { detailed = true; - detailedUpdate = updated; + detailedUpdate = other.detailedUpdate; } if (visitedDate == 0) { |
