Skip to content

Commit

Permalink
fix changeset submittion bug for tag fix tasks with relations
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak committed May 23, 2024
1 parent f6ae362 commit e569402
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ case class VersionedRelation(
) extends VersionedObject {

override def toChangeElement(changesetId: Int): Elem = {
<way>
<relation>
{
for (member <- members)
yield <member/> % Attribute(
Expand All @@ -176,7 +176,7 @@ case class VersionedRelation(
for (tagKV <- tags)
yield <tag/> % Attribute("k", Text(tagKV._1), Attribute("v", Text(tagKV._2), Null))
}
</way> % Attribute(
</relation> % Attribute(
"visible",
Text(visible.toString),
Attribute(
Expand Down

0 comments on commit e569402

Please sign in to comment.