This commit is contained in:
Luke Pulverenti
2014-02-20 12:49:07 -05:00
parent 888b8d619a
commit 830c326c3e
2 changed files with 29 additions and 13 deletions

View File

@@ -298,6 +298,24 @@ namespace MediaBrowser.ServerApplication
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-tv"), true);
}
catch (IOException)
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-collections"), true);
}
catch (IOException)
{
// Not there, no big deal
}
});
}