aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/GPXParser.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2012-12-18 08:52:38 +0100
committerSamuel Tardieu <sam@rfc1149.net>2012-12-18 08:52:38 +0100
commit61e692ccaaccd779129177c9b27b6ff5ae1bb891 (patch)
tree517f67acb6757de03d651fd7b3d2e71d0b9eeee9 /main/src/cgeo/geocaching/files/GPXParser.java
parent0136bc8dbd6e7c2a97b05bb8bcb563f9723d5077 (diff)
parentb2951e465ca783c4eab32e642ed885625b417f12 (diff)
downloadcgeo-61e692ccaaccd779129177c9b27b6ff5ae1bb891.zip
cgeo-61e692ccaaccd779129177c9b27b6ff5ae1bb891.tar.gz
cgeo-61e692ccaaccd779129177c9b27b6ff5ae1bb891.tar.bz2
Merge branch 'cache_coords_wpt_ng' of https://github.com/triakcz/c-geo-opensource into upstream
Diffstat (limited to 'main/src/cgeo/geocaching/files/GPXParser.java')
-rw-r--r--main/src/cgeo/geocaching/files/GPXParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/files/GPXParser.java b/main/src/cgeo/geocaching/files/GPXParser.java
index 2443b90..3f2e2c6 100644
--- a/main/src/cgeo/geocaching/files/GPXParser.java
+++ b/main/src/cgeo/geocaching/files/GPXParser.java
@@ -820,7 +820,7 @@ public abstract class GPXParser extends FileParser {
return WaypointType.FINAL;
}
// this is not fully correct, but lets also look for localized waypoint types
- for (WaypointType waypointType : WaypointType.ALL_TYPES_EXCEPT_OWN) {
+ for (WaypointType waypointType : WaypointType.ALL_TYPES_EXCEPT_OWN_AND_ORIGINAL) {
final String localized = waypointType.getL10n();
if (StringUtils.isNotEmpty(localized)) {
if (localized.equalsIgnoreCase(sym)) {