From 89e500edfdc490355b85499b88e0d70df349650d Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 4 Dec 2021 17:18:20 -0600 Subject: [PATCH] Fixed: (Stats) All filter not returning all --- src/Prowlarr.Api.V1/Indexers/IndexerStatsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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