remote control progress
This commit is contained in:
parent
a880a44f4a
commit
3387dac01d
|
@ -156,8 +156,6 @@ namespace MediaBrowser.Controller.Providers
|
||||||
/// <param name="item">The item.</param>
|
/// <param name="item">The item.</param>
|
||||||
private void PopulateBaseItemImages(BaseItem item)
|
private void PopulateBaseItemImages(BaseItem item)
|
||||||
{
|
{
|
||||||
var screenshotFiles = new List<string>();
|
|
||||||
|
|
||||||
// Primary Image
|
// Primary Image
|
||||||
var image = GetImage(item, "folder") ??
|
var image = GetImage(item, "folder") ??
|
||||||
GetImage(item, "poster") ??
|
GetImage(item, "poster") ??
|
||||||
|
@ -231,6 +229,8 @@ namespace MediaBrowser.Controller.Providers
|
||||||
// Screenshot Image
|
// Screenshot Image
|
||||||
image = GetImage(item, "screenshot");
|
image = GetImage(item, "screenshot");
|
||||||
|
|
||||||
|
var screenshotFiles = new List<string>();
|
||||||
|
|
||||||
if (image != null)
|
if (image != null)
|
||||||
{
|
{
|
||||||
screenshotFiles.Add(image.FullName);
|
screenshotFiles.Add(image.FullName);
|
||||||
|
|
|
@ -308,7 +308,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
||||||
|
|
||||||
RaiseReceiveWebRequest(context);
|
RaiseReceiveWebRequest(context);
|
||||||
|
|
||||||
await Task.Run(() =>
|
await Task.Factory.StartNew(() =>
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -318,6 +318,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
||||||
{
|
{
|
||||||
_logger.ErrorException("ProcessRequest failure", ex);
|
_logger.ErrorException("ProcessRequest failure", ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
}).ConfigureAwait(false);
|
}).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -549,6 +549,7 @@ namespace MediaBrowser.WebDashboard.Api
|
||||||
"tileitem.css",
|
"tileitem.css",
|
||||||
"search.css",
|
"search.css",
|
||||||
"pluginupdates.css",
|
"pluginupdates.css",
|
||||||
|
"remotecontrol.css",
|
||||||
"userimage.css"
|
"userimage.css"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -246,6 +246,9 @@
|
||||||
<Content Include="dashboard-ui\css\posteritem.css">
|
<Content Include="dashboard-ui\css\posteritem.css">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="dashboard-ui\css\remotecontrol.css">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
<Content Include="dashboard-ui\css\search.css">
|
<Content Include="dashboard-ui\css\search.css">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user