fix #2993 格式错误和传参警告

This commit is contained in:
jxxghp
2024-11-03 19:51:43 +08:00
parent cfc51c305b
commit df8531e4d8
6 changed files with 31 additions and 32 deletions
+2 -2
View File
@@ -95,13 +95,13 @@ class MediaServerChain(ChainBase):
return self.run_module("mediaserver_latest", count=count, server=server, username=username) return self.run_module("mediaserver_latest", count=count, server=server, username=username)
@cached(cache=TTLCache(maxsize=1, ttl=3600)) @cached(cache=TTLCache(maxsize=1, ttl=3600))
def get_latest_wallpapers(self, server:str, count=20) -> List[str]: def get_latest_wallpapers(self, server: str = None, count=20) -> List[str]:
""" """
获取最新最新入库条目海报作为壁纸,缓存1小时 获取最新最新入库条目海报作为壁纸,缓存1小时
""" """
return self.run_module("mediaserver_latest_images", server=server, count=count) return self.run_module("mediaserver_latest_images", server=server, count=count)
def get_latest_wallpaper(self, server:str) -> Optional[str]: def get_latest_wallpaper(self, server: str = None) -> Optional[str]:
""" """
获取最新最新入库条目海报作为壁纸,缓存1小时 获取最新最新入库条目海报作为壁纸,缓存1小时
""" """
+1 -1
View File
@@ -642,7 +642,7 @@ class SubscribeChain(ChainBase):
f'{torrent_info.site_name} - {torrent_info.title} 因订阅存在自定义识别词,重新识别元数据...') f'{torrent_info.site_name} - {torrent_info.title} 因订阅存在自定义识别词,重新识别元数据...')
# 重新识别元数据 # 重新识别元数据
torrent_meta = MetaInfo(title=torrent_info.title, subtitle=torrent_info.description, torrent_meta = MetaInfo(title=torrent_info.title, subtitle=torrent_info.description,
custom_words=subscribe.custom_word) custom_words=subscribe.custom_words)
# 媒体信息需要重新识别 # 媒体信息需要重新识别
torrent_mediainfo = None torrent_mediainfo = None
+1 -2
View File
@@ -282,7 +282,7 @@ class EmbyModule(_ModuleBase, _MediaServerBase[Emby]):
return server.get_latest(num=count, username=username) return server.get_latest(num=count, username=username)
def mediaserver_latest_images(self, def mediaserver_latest_images(self,
server: str, server: str = None,
count: int = 20, count: int = 20,
username: str = None, username: str = None,
host_type: bool = True, host_type: bool = True,
@@ -311,4 +311,3 @@ class EmbyModule(_ModuleBase, _MediaServerBase[Emby]):
links.append(item.image) links.append(item.image)
return links return links
+2 -2
View File
@@ -280,7 +280,7 @@ class JellyfinModule(_ModuleBase, _MediaServerBase[Jellyfin]):
return server.get_latest(num=count, username=username) return server.get_latest(num=count, username=username)
def mediaserver_latest_images(self, def mediaserver_latest_images(self,
server: str, server: str = None,
count: int = 20, count: int = 20,
username: str = None, username: str = None,
host_type: bool = True, host_type: bool = True,
@@ -301,7 +301,7 @@ class JellyfinModule(_ModuleBase, _MediaServerBase[Jellyfin]):
links = [] links = []
items: List[schemas.MediaServerPlayItem] = self.mediaserver_latest(num=count, username=username) items: List[schemas.MediaServerPlayItem] = self.mediaserver_latest(num=count, username=username)
for item in items: for item in items:
link = server.generate_image_link(item_id=item.id, image_type="Backdrop",host_type=host_type) link = server.generate_image_link(item_id=item.id, image_type="Backdrop", host_type=host_type)
if link: if link:
links.append(link) links.append(link)
+1 -1
View File
@@ -275,7 +275,7 @@ class PlexModule(_ModuleBase, _MediaServerBase[Plex]):
return server.get_latest(num=count) return server.get_latest(num=count)
def mediaserver_latest_images(self, def mediaserver_latest_images(self,
server: str, server: str = None,
count: int = 20, count: int = 20,
username: str = None, username: str = None,
) -> List[str]: ) -> List[str]: