fix 首页继续观看、最近添加排除黑名单媒体库

This commit is contained in:
thsrite
2024-01-08 13:05:09 +08:00
parent 8aa1027aae
commit c674e32046
5 changed files with 26 additions and 2 deletions

View File

@ -1002,6 +1002,7 @@ class Emby(metaclass=Singleton):
ret_resume.append(schemas.MediaServerPlayItem(
id=item.get("Id"),
title=title,
year=item.get("ProductionYear"),
subtitle=subtitle,
type=item_type,
image=image,

View File

@ -679,6 +679,7 @@ class Jellyfin(metaclass=Singleton):
ret_resume.append(schemas.MediaServerPlayItem(
id=item.get("Id"),
title=title,
year=item.get("ProductionYear"),
subtitle=subtitle,
type=item_type,
image=image,

View File

@ -626,6 +626,7 @@ class Plex(metaclass=Singleton):
ret_resume.append(schemas.MediaServerPlayItem(
id=item.key,
title=title,
year=item.year,
subtitle=subtitle,
type=item_type,
image=image,