Store the last 5000 urls

This commit is contained in:
Gervasio Marchand 2023-01-12 19:16:24 -03:00 committed by GitHub
parent 8efdc77e51
commit 32280c334b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,10 +141,10 @@ foreach (var statusLink in statusesToLoad)
} }
} }
if (importedList.Count > 1000) if (importedList.Count > 5000)
{ {
importedList = importedList importedList = importedList
.Skip(importedList.Count - 1000) .Skip(importedList.Count - 5000)
.ToList(); .ToList();
} }