Changeset 33299 in osm
- Timestamp:
- 2017-05-10T09:19:11+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryIdGenerator.java
r32528 r33299 64 64 if (isWMS && removeWMSParams.contains(kv[0])) 65 65 continue; 66 // TMS: skip parameters with variable values 67 if ( kv.length > 1 && kv[1].indexOf('{') >= 0 && kv[1].indexOf('}') > 0)66 // TMS: skip parameters with variable values and Mapbox's access token 67 if ((kv.length > 1 && kv[1].indexOf('{') >= 0 && kv[1].indexOf('}') > 0) || kv[0].equals("access_token")) 68 68 continue; 69 69 qparams.put(kv[0].toLowerCase(), kv.length > 1 ? kv[1] : null);
Note:
See TracChangeset
for help on using the changeset viewer.