aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgBase.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-09-15 23:42:59 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-09-15 23:42:59 +0200
commit5ed91aa1ec8e2a4f1adbde4a9ce05b6573cbbd03 (patch)
treecdf8b5a2d34d9052cf497f28e1bc89f3eaba24ac /src/cgeo/geocaching/cgBase.java
parent5b2c4bebe4eb4ebf485c3465f51adc14aff19165 (diff)
parent58442ed1404e50b0c43dc64d3b601dfc454dc773 (diff)
downloadcgeo-5ed91aa1ec8e2a4f1adbde4a9ce05b6573cbbd03.zip
cgeo-5ed91aa1ec8e2a4f1adbde4a9ce05b6573cbbd03.tar.gz
cgeo-5ed91aa1ec8e2a4f1adbde4a9ce05b6573cbbd03.tar.bz2
Merge branch 'release_20110915' into upstream
Diffstat (limited to 'src/cgeo/geocaching/cgBase.java')
-rw-r--r--src/cgeo/geocaching/cgBase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgeo/geocaching/cgBase.java b/src/cgeo/geocaching/cgBase.java
index 3ed5019..783bdba 100644
--- a/src/cgeo/geocaching/cgBase.java
+++ b/src/cgeo/geocaching/cgBase.java
@@ -1573,7 +1573,7 @@ public class cgBase {
for (int i = 0; i < images.length(); i++) {
final JSONObject image = images.getJSONObject(i);
final cgImage logImage = new cgImage();
- logImage.url = image.getString("FileName");
+ logImage.url = "http://img.geocaching.com/cache/log/" + image.getString("FileName");
logImage.title = image.getString("Name");
if (logDone.logImages == null) {
logDone.logImages = new ArrayList<cgImage>();