Skip to content

Commit d7b91e1

Browse files
authored
Fix syntax error that I hope was causing problems with action (#690)
1 parent 686599d commit d7b91e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/geojson/geojson.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ function mapml2geojson(element, options = {}) {
471471
metas.forEach((meta) => {
472472
let name = meta.getAttribute('name');
473473
if (name === "extent") {
474-
let content = meta.getAttribute('content');;
474+
let content = meta.getAttribute('content');
475475
let arr = content.split(",");
476476
let ex = {};
477477
for (let i=0; i<arr.length; i++) {
@@ -530,4 +530,4 @@ function mapml2geojson(element, options = {}) {
530530
});
531531

532532
return json;
533-
}
533+
}

0 commit comments

Comments
 (0)