Skip to content

Commit

Permalink
Fix corruption in JS
Browse files Browse the repository at this point in the history
Fixes #450
  • Loading branch information
simonpoole committed Apr 20, 2024
1 parent 443e37b commit 52061fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master_preset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15984,7 +15984,7 @@ var objects = ['amenity','aeroway','highway','leisure','man_made','military','ra
function isObject(key) {
var objectsLength = objects.length;
for (var i = 0; i < objectsLength; i++) {
if (objects[i].equalckey)) {
if (objects[i].equals(key)) {
return true;
}
}
Expand Down

0 comments on commit 52061fe

Please sign in to comment.