aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Plugin.cs
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2013-03-04 09:43:29 -0500
committerEric Reed <ebr@mediabrowser3.com>2013-03-04 09:43:29 -0500
commitb4ca3a7ad94484fe73262a4de92c554e768ee891 (patch)
tree21751cc3170fd1e9fd0974df059411ef4696a732 /MediaBrowser.Api/Plugin.cs
parent67b20fdf0f970041480b1ea7d08d80b72a394c51 (diff)
parentd3b9afef2f3895daf91056938a92d6f51c8c834b (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Conflicts: MediaBrowser.Controller/Providers/FanartBaseProvider.cs MediaBrowser.Controller/Providers/Music/LastfmArtistProvider.cs
Diffstat (limited to 'MediaBrowser.Api/Plugin.cs')
-rw-r--r--MediaBrowser.Api/Plugin.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/MediaBrowser.Api/Plugin.cs b/MediaBrowser.Api/Plugin.cs
index b8c81bbe1..321267b04 100644
--- a/MediaBrowser.Api/Plugin.cs
+++ b/MediaBrowser.Api/Plugin.cs
@@ -1,4 +1,5 @@
-using MediaBrowser.Common.Kernel;
+using MediaBrowser.Common.Configuration;
+using MediaBrowser.Common.Kernel;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Plugins;
using MediaBrowser.Model.Serialization;
@@ -13,9 +14,10 @@ namespace MediaBrowser.Api
/// <summary>
/// Initializes a new instance of the <see cref="Plugin" /> class.
/// </summary>
- /// <param name="kernel">The kernel.</param>
+ /// <param name="appPaths">The app paths.</param>
/// <param name="xmlSerializer">The XML serializer.</param>
- public Plugin(IKernel kernel, IXmlSerializer xmlSerializer) : base(kernel, xmlSerializer)
+ public Plugin(IApplicationPaths appPaths, IXmlSerializer xmlSerializer)
+ : base(appPaths, xmlSerializer)
{
Instance = this;
}