Fixed: (History) Reduce History Cleanup Days to 30

This commit is contained in:
Bogdan
2023-07-04 06:56:13 +03:00
parent 18e2757d37
commit a1abcd6c93
2 changed files with 3 additions and 3 deletions
@@ -77,7 +77,7 @@ namespace NzbDrone.Core.Configuration
public int HistoryCleanupDays
{
get { return GetValueInt("HistoryCleanupDays", 365); }
get { return GetValueInt("HistoryCleanupDays", 30); }
set { SetValue("HistoryCleanupDays", value); }
}