forked from MapComplete/MapComplete
Fix bug which blocked uploads
This commit is contained in:
parent
bcf71a601e
commit
2c677ee8a2
4 changed files with 13 additions and 1 deletions
|
@ -149,6 +149,9 @@ export abstract class OsmObject {
|
|||
TagsXML(): string {
|
||||
let tags = "";
|
||||
for (const key in this.tags) {
|
||||
if(key.startsWith("_")){
|
||||
continue;
|
||||
}
|
||||
const v = this.tags[key];
|
||||
if (v !== "") {
|
||||
tags += ' <tag k="' + Utils.EncodeXmlValue(key) + '" v="' + Utils.EncodeXmlValue(this.tags[key]) + '"/>\n'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue