diff --git a/src/Prowlarr.Api.V1/Indexers/IndexerStatsController.cs b/src/Prowlarr.Api.V1/Indexers/IndexerStatsController.cs index e3a13d066..cf1249b9b 100644 --- a/src/Prowlarr.Api.V1/Indexers/IndexerStatsController.cs +++ b/src/Prowlarr.Api.V1/Indexers/IndexerStatsController.cs @@ -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