mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-30 23:47:17 +02:00
animebytes: use UTC to filter out releases
This commit is contained in:
@@ -655,7 +655,7 @@ namespace Jackett.Common.Indexers.Definitions
|
||||
|
||||
if (query.IsRssSearch)
|
||||
{
|
||||
releases = releases.Where((r, index) => r.PublishDate > DateTime.Now.AddDays(-1) || index < 20).ToList();
|
||||
releases = releases.Where((r, index) => r.PublishDate > DateTime.UtcNow.AddDays(-1) || index < 20).ToList();
|
||||
}
|
||||
|
||||
// Add to the cache
|
||||
|
Reference in New Issue
Block a user