mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-13 13:46:24 +00:00
support headroom with guide
This commit is contained in:
@@ -215,6 +215,12 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
|
||||
return;
|
||||
}
|
||||
|
||||
var video = e.Item as Video;
|
||||
if (video != null && video.IsThemeMedia)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var type = GetPlaybackNotificationType(item.MediaType);
|
||||
|
||||
SendPlaybackNotification(type, e);
|
||||
@@ -230,6 +236,12 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
|
||||
return;
|
||||
}
|
||||
|
||||
var video = e.Item as Video;
|
||||
if (video != null && video.IsThemeMedia)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var type = GetPlaybackStoppedNotificationType(item.MediaType);
|
||||
|
||||
SendPlaybackNotification(type, e);
|
||||
|
||||
Reference in New Issue
Block a user