1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-30 09:07:14 +02:00

fixed http 500 error.

This commit is contained in:
kay.one 2012-01-22 20:34:30 -08:00
parent 54881a0e4a
commit a68c882032
2 changed files with 12 additions and 0 deletions

View File

@ -24,6 +24,16 @@ static extern bool GetDiskFreeSpaceEx(string lpDirectoryName,
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
public virtual DateTime GetLastDirectoryWrite(string path)
{
if (!FolderExists(path))
{
throw new DirectoryNotFoundException("Directory doesn't exist. " + path);
}
GetFiles(path, SearchOption.AllDirectories);
}
public virtual bool FolderExists(string path)
{
return Directory.Exists(path);

View File

@ -179,6 +179,7 @@ public void downloadFeed()
Mocker.Resolve<TestUrlIndexer>().FetchRss();
Mark500Inconclusive();
ExceptionVerification.IgnoreWarns();
}
[TestCase("simpsons", 21, 23)]
@ -387,6 +388,7 @@ private static void Mark500Inconclusive()
{
ExceptionVerification.MarkInconclusive(typeof(WebException));
ExceptionVerification.MarkInconclusive("System.Net.WebException");
ExceptionVerification.MarkInconclusive("(503) Server Unavailable.");
}
}
}