mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
nzb titles in manual search will wrap
This commit is contained in:
parent
fd54486478
commit
0974d275ef
3 changed files with 7 additions and 2 deletions
|
@ -17,7 +17,7 @@ namespace NzbDrone.Core.Parser.Model
|
|||
|
||||
public bool IsRecentEpisode()
|
||||
{
|
||||
return Episodes.Any(e => e.AirDateUtc >= DateTime.Today.AddDays(-14));
|
||||
return Episodes.Any(e => e.AirDateUtc >= DateTime.UtcNow.Date.AddDays(-14));
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue