diff options
author | mucek4 <tomaz@gorenc.org> | 2011-09-17 09:06:04 +0200 |
---|---|---|
committer | mucek4 <tomaz@gorenc.org> | 2011-09-17 09:06:04 +0200 |
commit | 8c2357d9b31f204ff10d55262be5c12d98504617 (patch) | |
tree | fd2093c9ba9f255c6e0e47712ddc6825cd4a3153 | |
parent | bb13889a6c1614aac543aab6e5108d1f2ec0ca70 (diff) | |
download | cgeo-8c2357d9b31f204ff10d55262be5c12d98504617.zip cgeo-8c2357d9b31f204ff10d55262be5c12d98504617.tar.gz cgeo-8c2357d9b31f204ff10d55262be5c12d98504617.tar.bz2 |
Hint decrypt added back to GC.com Fix #491
-rw-r--r-- | main/src/cgeo/geocaching/cgBase.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgBase.java b/main/src/cgeo/geocaching/cgBase.java index 50d1c05..f5d2f7e 100644 --- a/main/src/cgeo/geocaching/cgBase.java +++ b/main/src/cgeo/geocaching/cgBase.java @@ -2591,6 +2591,7 @@ public class cgBase { } else if (StringUtils.isNotBlank(guid)) { params.put("guid", guid); } + params.put("decrypt", "y"); String page = requestLogged(false, host, path, method, params, false, false, false); @@ -4669,7 +4670,7 @@ public class cgBase { /** * Generate a numeric date and time string according to system-wide settings (locale, * date format) such as "7 sept. à 12:35". - * + * * @param context * a Context * @param date |