Changeset 33702 in osm
- Timestamp:
- 2017-10-04T23:46:19+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/customurl/OpenPageAction.java
r33579 r33702 94 94 } 95 95 try { 96 OpenBrowser.displayUrl(addr); 96 // See #12836 - do not load invalid history 97 if (!addr.endsWith("/0/history")) { 98 OpenBrowser.displayUrl(addr); 99 } 97 100 } catch (Exception ex) { 98 101 Logging.log(Logging.LEVEL_ERROR, "Can not open URL " + addr, ex);
Note:
See TracChangeset
for help on using the changeset viewer.