mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-20 20:00:48 +02:00
Fixed: (Stats) All filter not returning all
This commit is contained in:
parent
ea83020714
commit
89e500edfd
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ public IndexerStatsController(IIndexerStatisticsService indexerStatisticsService
|
|||
[HttpGet]
|
||||
public IndexerStatsResource GetAll(DateTime? startDate, DateTime? endDate)
|
||||
{
|
||||
var statsStartDate = startDate ?? DateTime.Now.AddDays(-30);
|
||||
var statsStartDate = startDate ?? DateTime.MinValue;
|
||||
var statsEndDate = endDate ?? DateTime.Now;
|
||||
|
||||
var indexerResource = new IndexerStatsResource
|
||||
|
|
|
|||
Loading…
Reference in a new issue