moved Plugins to separate repo

This commit is contained in:
LukePulverenti
2013-02-22 01:28:57 -05:00
parent 868a7ce9c8
commit 746c5d2fa7
54 changed files with 104 additions and 4693 deletions

View File

@@ -217,7 +217,7 @@ namespace MediaBrowser.UI.Controller
_logger.Info("Downloading {0} Configuration", pluginInfo.Name);
// First download to a MemoryStream. This way if the download is cut off, we won't be left with a partial file
using (var stream = await UIKernel.Instance.ApiClient.GetPluginConfigurationFileAsync(pluginInfo.UniqueId).ConfigureAwait(false))
using (var stream = await UIKernel.Instance.ApiClient.GetPluginConfigurationFileAsync(pluginInfo.Id).ConfigureAwait(false))
{
using (var memoryStream = new MemoryStream())
{