Include the postal code

This commit is contained in:
2024-01-07 14:58:33 -08:00
parent 01ccc1ab91
commit e68e3b14cd

View File

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