I lied - re-worked metadata folder handling again. Should now really only hit once and is available for other item types

This commit is contained in:
ebr11 Eric Reed spam
2012-09-19 10:22:53 -04:00
parent 442081f4e2
commit 6edc836ce5
6 changed files with 26 additions and 18 deletions

View File

@@ -18,6 +18,7 @@ namespace MediaBrowser.Controller.Resolvers
public static List<string> IgnoreFolders = new List<string>()
{
"trailers",
"metadata",
"bdmv",
"certificate",
"backup",
@@ -62,11 +63,6 @@ namespace MediaBrowser.Controller.Resolvers
// Ignore any folders containing a file called .ignore
resolve = false;
}
else if (args.IsMetadataFolder)
{
// I think this is redundant, but...
resolve = false;
}
return resolve;
}