Skip to content

Commit

Permalink
Merge pull request #4694 from matkoniecz/nsi
Browse files Browse the repository at this point in the history
fix #4688
  • Loading branch information
westnordost authored Dec 19, 2022
2 parents 259c32b + d193533 commit 7a976ed
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,11 @@ private suspend fun createEditAction(
}
}

newNames.applyTo(tagChanges)
if (!isFeatureWithName) {
// in this case name input was not even shown so newNames will be empty
// newNames should not be applied as it will erase names provided by NSI
newNames.applyTo(tagChanges)
}
if (newNames.isEmpty() && isNoName) {
tagChanges["name:signed"] = "no"
}
Expand Down

0 comments on commit 7a976ed

Please sign in to comment.