Skip to content

Commit

Permalink
Fix attribute change fixme to show correct from value
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidKarlas committed Nov 29, 2023
1 parent 50ccc64 commit 52baf09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OsmGursBuildingImport/OsmBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ private static bool UpdateAttribute(TagsCollectionBase attributes, string attrib
return false;
}

attributes[attributeName] = newValue;

AddFixmeAttribute(attributes,
$"\"{attributeName}\" changed from {attributes[attributeName]} to {newValue}.");
$"\"{attributeName}\" changed from {attributes[attributeName]} to {newValue}.");

attributes[attributeName] = newValue;
return true;
}
else
Expand Down

0 comments on commit 52baf09

Please sign in to comment.