diff --git a/src/FilterLists.Services/Snapshot/SnapshotService.cs b/src/FilterLists.Services/Snapshot/SnapshotService.cs index 4182461c0..ca5385b9b 100644 --- a/src/FilterLists.Services/Snapshot/SnapshotService.cs +++ b/src/FilterLists.Services/Snapshot/SnapshotService.cs @@ -54,6 +54,7 @@ await DbContext.FilterLists .OrderBy(l => l.Snapshots.Any()) .ThenBy(lastSnapTimestamp) .Take(batchSize) + .Include(l => l.Snapshots) .ToListAsync(); private async Task> CreateAndSaveSnaps(IEnumerable lists)