This commit is contained in:
mmd-osm
2018-03-26 21:29:40 +02:00
parent 35317d3a95
commit e3536fd05c
+2 -2
View File
@@ -388,11 +388,11 @@ function generateTaginfo(presets, fields) {
return;
}
var isNewDescription = currentTaginfoEntries[0].description.split(' ,')
var isNewDescription = currentTaginfoEntries[0].description.split(', ')
.indexOf(tag.description) === -1;
if (isNewDescription) {
currentTaginfoEntries[0].description += ", " + tag.description;
currentTaginfoEntries[0].description += ', ' + tag.description;
}
}