aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Kernel.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-22 20:24:04 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-22 20:24:04 -0500
commit57cb08085d61682719c6c2804c37aa6aae6fd470 (patch)
tree5b890fce8cc1eee01f2598a0b4039e7c59175f2b /MediaBrowser.Controller/Kernel.cs
parent6a5bf9cc780c6cd878be4c5111d64226208f0597 (diff)
fix broken images
Diffstat (limited to 'MediaBrowser.Controller/Kernel.cs')
-rw-r--r--MediaBrowser.Controller/Kernel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Kernel.cs b/MediaBrowser.Controller/Kernel.cs
index 25a049435..6bd48a502 100644
--- a/MediaBrowser.Controller/Kernel.cs
+++ b/MediaBrowser.Controller/Kernel.cs
@@ -230,8 +230,7 @@ namespace MediaBrowser.Controller
/// Gets the list of BasePluginFolders added by plugins
/// </summary>
/// <value>The plugin folders.</value>
- [ImportMany(typeof(BasePluginFolder))]
- internal IEnumerable<BasePluginFolder> PluginFolders { get; private set; }
+ internal IEnumerable<IVirtualFolderCreator> PluginFolderCreators { get; private set; }
/// <summary>
/// Gets the list of available user repositories
@@ -387,6 +386,7 @@ namespace MediaBrowser.Controller
IntroProviders = GetExports<IIntroProvider>(allTypes);
PluginConfigurationPages = GetExports<IPluginConfigurationPage>(allTypes);
ImageEnhancers = GetExports<IImageEnhancer>(allTypes);
+ PluginFolderCreators = GetExports<IVirtualFolderCreator>(allTypes);
}
/// <summary>