Fixed: (Stats) All filter not returning all

pull/673/head
Qstick 3 years ago
parent ea83020714
commit 89e500edfd

@ -18,7 +18,7 @@ namespace Prowlarr.Api.V1.Indexers
[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…
Cancel
Save