diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-26 23:19:11 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-26 23:19:11 -0500 |
| commit | 511328edf9b91278d29d50f9446b9cc2ae69e6f7 (patch) | |
| tree | 6d47f1e732d669a891fef1407e8c12b68b9355b8 /MediaBrowser.Api/PluginService.cs | |
| parent | 3751e14eb1b7a0815b6ab7c2164c262e4723c52e (diff) | |
| parent | 4b2cf29fe1714e2bdef1d75d1b3aefb2f29ab4f6 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Api/PluginService.cs')
| -rw-r--r-- | MediaBrowser.Api/PluginService.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Api/PluginService.cs b/MediaBrowser.Api/PluginService.cs index 7afd15893..b39ff48c4 100644 --- a/MediaBrowser.Api/PluginService.cs +++ b/MediaBrowser.Api/PluginService.cs @@ -202,9 +202,9 @@ namespace MediaBrowser.Api var result = new PluginSecurityInfo { - IsMBSupporter = kernel.PluginSecurityManager.IsMBSupporter, - SupporterKey = kernel.PluginSecurityManager.SupporterKey, - LegacyKey = kernel.PluginSecurityManager.LegacyKey + IsMBSupporter = kernel.SecurityManager.IsMBSupporter, + SupporterKey = kernel.SecurityManager.SupporterKey, + LegacyKey = kernel.SecurityManager.LegacyKey }; return ToOptimizedResult(result); @@ -220,8 +220,8 @@ namespace MediaBrowser.Api var info = _jsonSerializer.DeserializeFromStream<PluginSecurityInfo>(request.RequestStream); - kernel.PluginSecurityManager.SupporterKey = info.SupporterKey; - kernel.PluginSecurityManager.LegacyKey = info.LegacyKey; + kernel.SecurityManager.SupporterKey = info.SupporterKey; + kernel.SecurityManager.LegacyKey = info.LegacyKey; } /// <summary> |
