mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
support sharing m3u tuner streams
This commit is contained in:
@@ -1421,6 +1421,16 @@ namespace MediaBrowser.Controller.Entities
|
||||
// Sweep through recursively and update status
|
||||
foreach (var item in itemsResult)
|
||||
{
|
||||
if (item.IsVirtualItem)
|
||||
{
|
||||
// The querying doesn't support virtual unaired
|
||||
var episode = item as Episode;
|
||||
if (episode != null && episode.IsUnaired)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
item.MarkPlayed(user, datePlayed, resetPosition);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user