Skip to content

Commit

Permalink
Set correct culture info
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Apr 30, 2024
1 parent c32d6f5 commit 64fad2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Geodatenbezug/Processors/NutzungsflaechenProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ protected async override Task ProcessTopicAsync()
}

// Rename the fields to remove the layer name prefix
if (originalFieldName.Contains(NutzungsflaechenLayerName, StringComparison.CurrentCulture))
if (originalFieldName.Contains(NutzungsflaechenLayerName, StringComparison.InvariantCulture))
{
fieldName = originalFieldName.Replace($"{NutzungsflaechenLayerName}_", string.Empty, StringComparison.CurrentCulture);
fieldName = originalFieldName.Replace($"{NutzungsflaechenLayerName}_", string.Empty, StringComparison.InvariantCulture);
}

if (originalFieldName.Contains(NutzungsartLayerName, StringComparison.InvariantCulture))
Expand Down

0 comments on commit 64fad2a

Please sign in to comment.