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

This commit is contained in:
2024-01-16 13:06:16 -08:00
parent c1ed05a335
commit 7721dfb669

View File

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