mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix build error in 16f918616b
This commit is contained in:
parent
d13d410149
commit
9b9c2d0d14
1 changed files with 1 additions and 2 deletions
|
|
@ -39,8 +39,7 @@ private async Task CleanupFailedSnapshots()
|
|||
private async Task<IEnumerable<FilterListViewUrlDto>> GetListsToCapture(int batchSize) =>
|
||||
await DbContext
|
||||
.FilterLists
|
||||
.Where(l => !l.CantSnapshot &&
|
||||
!(l.ViewUrl.StartsWith(WaybackService.WaybackMachineUrlPrefix) &&
|
||||
.Where(l => !(l.ViewUrl.StartsWith(WaybackService.WaybackMachineUrlPrefix) &&
|
||||
l.Snapshots.Any(s => s.WasSuccessful)))
|
||||
.OrderBy(l => l.Snapshots.Any())
|
||||
.ThenBy(l => l.Snapshots
|
||||
|
|
|
|||
Loading…
Reference in a new issue