Add an extra trailing comma to accomodate for Postal Code

This commit is contained in:
Jeff Leung 2024-01-04 22:17:12 -08:00
parent 4504d290da
commit 94b7234b42
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ namespace AS1024.GeoFeed.GeoFeedBuilder
foreach (var feed in geoFeeds)
{
csvContent.AppendLine($"{feed.Prefix},{feed.GeolocCountry},{feed.GeolocRegion},{feed.GeolocCity}");
csvContent.AppendLine($"{feed.Prefix},{feed.GeolocCountry},{feed.GeolocRegion},{feed.GeolocCity},");
}
return csvContent.ToString();