remove leading semicolon from changeset source (#9887)

This commit is contained in:
Kyℓe Hensel
2025-02-17 21:13:52 +11:00
committed by GitHub
parent 9b7b0cde9e
commit 0fc978de45

View File

@@ -123,7 +123,7 @@ export function uiCommit(context) {
}
});
tags.source = context.cleanTagValue(sources.join(';'));
tags.source = context.cleanTagValue(sources.filter(Boolean).join(';'));
}
context.changeset = new osmChangeset({ tags: tags });