support headroom with guide
This commit is contained in:
parent
403ac43b4f
commit
371cbc0c1d
|
@ -1546,7 +1546,7 @@ namespace MediaBrowser.Controller.Entities
|
||||||
|
|
||||||
if (itemByPath == null)
|
if (itemByPath == null)
|
||||||
{
|
{
|
||||||
Logger.Warn("Unable to find linked item at path {0}", info.Path);
|
//Logger.Warn("Unable to find linked item at path {0}", info.Path);
|
||||||
}
|
}
|
||||||
|
|
||||||
return itemByPath;
|
return itemByPath;
|
||||||
|
|
|
@ -215,6 +215,12 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var video = e.Item as Video;
|
||||||
|
if (video != null && video.IsThemeMedia)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var type = GetPlaybackNotificationType(item.MediaType);
|
var type = GetPlaybackNotificationType(item.MediaType);
|
||||||
|
|
||||||
SendPlaybackNotification(type, e);
|
SendPlaybackNotification(type, e);
|
||||||
|
@ -230,6 +236,12 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var video = e.Item as Video;
|
||||||
|
if (video != null && video.IsThemeMedia)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var type = GetPlaybackStoppedNotificationType(item.MediaType);
|
var type = GetPlaybackStoppedNotificationType(item.MediaType);
|
||||||
|
|
||||||
SendPlaybackNotification(type, e);
|
SendPlaybackNotification(type, e);
|
||||||
|
|
|
@ -1712,6 +1712,9 @@
|
||||||
<None Include="dashboard-ui\strings\fr-CA.json">
|
<None Include="dashboard-ui\strings\fr-CA.json">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="dashboard-ui\strings\fr-FR.json">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
<None Include="dashboard-ui\strings\hu.json">
|
<None Include="dashboard-ui\strings\hu.json">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user