mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
3D bug with search history cleanup fixed
Fixed: Search History Cleanup Job logic was backwards
This commit is contained in:
parent
c2a1df61f6
commit
bd44b2899a
2 changed files with 2 additions and 3 deletions
|
@ -70,7 +70,7 @@ namespace NzbDrone.Core.Test.ProviderTests
|
|||
{
|
||||
var history = Builder<SearchHistory>.CreateListOfSize(10)
|
||||
.All()
|
||||
.With(h => h.SearchTime = DateTime.Now.AddDays(10))
|
||||
.With(h => h.SearchTime = DateTime.Now.AddDays(-10))
|
||||
.Build();
|
||||
|
||||
foreach(var searchHistory in history)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue