Changeset 18568 in josm for trunk/src/org
- Timestamp:
- 2022-10-05T15:50:33+02:00 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java
r18567 r18568 615 615 // Java has issues if spaces are not URL encoded. Ensure that we URL encode the spaces. 616 616 if (layer.format.contains(" ")) { 617 layer.format = layer.format.replace(" ", " &20");617 layer.format = layer.format.replace(" ", "%20"); 618 618 } 619 619 return layer;
Note:
See TracChangeset
for help on using the changeset viewer.