1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-26 22:52:40 +02:00

Fixed: Dates before 1970 causing an exception.

Fixes #1913
This commit is contained in:
Leonardo Galli 2018-03-04 15:42:15 +01:00
parent 61ee8edb5a
commit 57adf0e3a5
2 changed files with 12 additions and 0 deletions

View File

@ -294,12 +294,22 @@ public void FolderSetLastWriteTime(string path, DateTime dateTime)
{
Ensure.That(path, () => path).IsValidPath();
if (dateTime.Before(DateTimeExtensions.Epoch))
{
dateTime = DateTimeExtensions.Epoch;
}
Directory.SetLastWriteTimeUtc(path, dateTime);
}
public void FileSetLastWriteTime(string path, DateTime dateTime)
{
Ensure.That(path, () => path).IsValidPath();
if (dateTime.Before(DateTimeExtensions.Epoch))
{
dateTime = DateTimeExtensions.Epoch;
}
File.SetLastWriteTime(path, dateTime);
}

View File

@ -38,5 +38,7 @@ public static bool Between(this DateTime dateTime, DateTime afterDateTime, DateT
{
return dateTime >= afterDateTime && dateTime <= beforeDateTime;
}
public static DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
}
}