mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed: Age of releases includes time of day in calculation
This commit is contained in:
parent
f008d85657
commit
86936303dd
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ namespace NzbDrone.Core.Indexers
|
|||
dateString = RemoveTimeZoneRegex.Replace(dateString, "");
|
||||
result = DateTime.Parse(dateString, DateTimeFormatInfo.InvariantInfo, DateTimeStyles.AdjustToUniversal);
|
||||
}
|
||||
return result.ToUniversalTime().Date;
|
||||
return result.ToUniversalTime();
|
||||
}
|
||||
catch (FormatException e)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue