mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-18 16:16:17 +00:00
don't persist lazy loaded paths
This commit is contained in:
@@ -590,7 +590,8 @@ namespace MediaBrowser.ServerApplication
|
||||
{
|
||||
return Directory.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly)
|
||||
.Select(LoadAssembly)
|
||||
.Where(a => a != null);
|
||||
.Where(a => a != null)
|
||||
.ToList();
|
||||
}
|
||||
catch (DirectoryNotFoundException)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user