mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
Move NeedsRefresh to async task and fix problem finding episode metadata
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user