Move NeedsRefresh to async task and fix problem finding episode metadata

This commit is contained in:
ebr11 Eric Reed spam
2012-09-18 15:18:15 -04:00
parent e5b5861abf
commit 0f078d8098
6 changed files with 46 additions and 12 deletions

View File

@@ -18,7 +18,6 @@ namespace MediaBrowser.Controller.Resolvers
public static List<string> IgnoreFolders = new List<string>()
{
"trailers",
"metadata",
"bdmv",
"certificate",
"backup",
@@ -61,6 +60,11 @@ namespace MediaBrowser.Controller.Resolvers
// Ignore any folders containing a file called .ignore
resolve = false;
}
else if (args.FileInfo.cFileName.Equals("metadata", StringComparison.OrdinalIgnoreCase))
{
// Ignore metadata folders
resolve = false;
}
return resolve;
}