Update the sqlite provider to say it was retrieved from the persistent cache

This commit is contained in:
Jeff Leung 2024-01-16 13:06:16 -08:00
parent c1ed05a335
commit 7721dfb669
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ namespace AS1024.GeoFeed.Core.GeoFeedSqliteLocalCache
List<IPGeoFeed> cachedData = []; List<IPGeoFeed> cachedData = [];
results.ForEach(cachedData.Add); results.ForEach(cachedData.Add);
return cachedData.ToGeoFeedCsv(); return cachedData.ToGeoFeedCsv(true, true);
} }
private async Task DBContextMigrate() private async Task DBContextMigrate()