mirror of
https://github.com/g3rv4/GetMoarFediverse.git
synced 2024-11-24 16:43:17 +01:00
Store the last 5000 urls
This commit is contained in:
parent
8efdc77e51
commit
32280c334b
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user