remote control progress

This commit is contained in:
Luke Pulverenti 2013-05-30 15:58:07 -04:00
parent a880a44f4a
commit 3387dac01d
4 changed files with 8 additions and 3 deletions

View file

@ -156,8 +156,6 @@ namespace MediaBrowser.Controller.Providers
/// <param name="item">The item.</param>
private void PopulateBaseItemImages(BaseItem item)
{
var screenshotFiles = new List<string>();
// Primary Image
var image = GetImage(item, "folder") ??
GetImage(item, "poster") ??
@ -231,6 +229,8 @@ namespace MediaBrowser.Controller.Providers
// Screenshot Image
image = GetImage(item, "screenshot");
var screenshotFiles = new List<string>();
if (image != null)
{
screenshotFiles.Add(image.FullName);

View file

@ -308,7 +308,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
RaiseReceiveWebRequest(context);
await Task.Run(() =>
await Task.Factory.StartNew(() =>
{
try
{
@ -318,6 +318,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
{
_logger.ErrorException("ProcessRequest failure", ex);
}
}).ConfigureAwait(false);
}

View file

@ -549,6 +549,7 @@ namespace MediaBrowser.WebDashboard.Api
"tileitem.css",
"search.css",
"pluginupdates.css",
"remotecontrol.css",
"userimage.css"
};

View file

@ -246,6 +246,9 @@
<Content Include="dashboard-ui\css\posteritem.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="dashboard-ui\css\remotecontrol.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="dashboard-ui\css\search.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>