diff options
Diffstat (limited to 'main/src/cgeo/geocaching/cgWaypoint.java')
-rw-r--r-- | main/src/cgeo/geocaching/cgWaypoint.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/cgWaypoint.java b/main/src/cgeo/geocaching/cgWaypoint.java index af6bab5..2613514 100644 --- a/main/src/cgeo/geocaching/cgWaypoint.java +++ b/main/src/cgeo/geocaching/cgWaypoint.java @@ -156,7 +156,7 @@ public class cgWaypoint implements IWaypoint, Comparable<cgWaypoint> { } public String getUrl() { - return "http://coord.info/" + geocode.toUpperCase(); + return "http://www.geocaching.com/seek/cache_details.aspx?wp=" + geocode.toUpperCase(); } @Override @@ -242,4 +242,4 @@ public class cgWaypoint implements IWaypoint, Comparable<cgWaypoint> { public String getCoordType() { return "waypoint"; } -}
\ No newline at end of file +} |