aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/CacheDetailActivity.java2
-rw-r--r--main/src/cgeo/geocaching/export/GpxExport.java3
2 files changed, 4 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/CacheDetailActivity.java b/main/src/cgeo/geocaching/CacheDetailActivity.java
index b670ec9..1662bb6 100644
--- a/main/src/cgeo/geocaching/CacheDetailActivity.java
+++ b/main/src/cgeo/geocaching/CacheDetailActivity.java
@@ -666,6 +666,8 @@ public class CacheDetailActivity extends AbstractViewPagerActivity<CacheDetailAc
}
((TextView) findViewById(R.id.actionbar_title)).setCompoundDrawablesWithIntrinsicBounds(getResources().getDrawable(cache.getType().markerId), null, null, null);
+ // reset imagesList so Images view page will be redrawn
+ imagesList = null;
reinitializeViewPager();
// rendering done! remove progress popup if any there
diff --git a/main/src/cgeo/geocaching/export/GpxExport.java b/main/src/cgeo/geocaching/export/GpxExport.java
index c2a58b7..b22f80f 100644
--- a/main/src/cgeo/geocaching/export/GpxExport.java
+++ b/main/src/cgeo/geocaching/export/GpxExport.java
@@ -306,7 +306,8 @@ class GpxExport extends AbstractExport {
"type", log.type.type);
gpx.startTag(PREFIX_GROUNDSPEAK, "finder");
- gpx.attribute("", "id", log.author);
+ gpx.attribute("", "id", "");
+ gpx.text(log.author);
gpx.endTag(PREFIX_GROUNDSPEAK, "finder");
gpx.startTag(PREFIX_GROUNDSPEAK, "text");