- Timestamp:
- 2018-01-19T20:15:02+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/OverpassDownloadSource.java
r13130 r13335 192 192 }; 193 193 194 return new OverpassDownloadData( query, errorReporter);194 return new OverpassDownloadData(OverpassDownloadReader.fixQuery(query), errorReporter); 195 195 } 196 196 -
trunk/src/org/openstreetmap/josm/io/OverpassDownloadReader.java
r12841 r13335 394 394 return ds; 395 395 } 396 397 /** 398 * Fixes Overpass API query to make sure it will be accepted by JOSM. 399 * @param query Overpass query to check 400 * @return fixed query 401 * @since 13335 402 */ 403 public static String fixQuery(String query) { 404 return query.replaceFirst("out( body| skel| ids)?( id| qt)?;", "out meta$2;"); 405 } 396 406 }
Note:
See TracChangeset
for help on using the changeset viewer.