- Timestamp:
- 2018-05-10T23:22:55+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/CachedFile.java
r13647 r13725 13 13 import java.net.MalformedURLException; 14 14 import java.net.URL; 15 import java.net.URLEncoder; 15 16 import java.nio.charset.StandardCharsets; 16 17 import java.nio.file.Files; … … 489 490 uc = u.replaceAll("%<(.*)>", ""); 490 491 } else { 491 uc = u.replaceAll("%<(.*)>", "$1"+ parameter);492 uc = u.replaceAll("%<(.*)>", "$1"+URLEncoder.encode(parameter, "UTF-8")); 492 493 } 493 494 if (!uc.equals(u))
Note: See TracChangeset
for help on using the changeset viewer.