Overpass query syntax error with newer releases
mmd-osm opened this issue · 3 comments
mmd-osm commented
https://github.com/osmlab/changeset-map/blob/master/lib/getChangeset.js#L75 uses Overpass QL syntax, which is no longer valid with release 0.7.55:
relation(bbox)(changed))
should be:
relation(bbox)(changed);)
(missing semicolon added)
willemarcel commented
Thank you, @mmd-osm ! Do the versions prior to 0.7.55 accept this new syntax?
mmd-osm commented
The syntax is not really new, it's rather the other way around that the syntax check in previous versions allowed for this invalid variant without complaining. This has changed in 0.7.55.
See openstreetmap/openstreetmap-website#1843 (comment) for more details.