should be able to queue report using api.

This commit is contained in:
kay.one 2013-06-09 13:50:57 -07:00
commit ac3582d5c4
22 changed files with 91 additions and 270 deletions

View file

@ -24,7 +24,7 @@ namespace NzbDrone.Core.History
public void Trim()
{
var cutoff = DateTime.Now.AddDays(-30).Date;
var cutoff = DateTime.UtcNow.AddDays(-30).Date;
Delete(c=> c.Date < cutoff);
}