fix image size

This commit is contained in:
jxxghp 2023-07-27 11:19:40 +08:00
parent d873765768
commit f9d3b4826a
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ class DownloadChain(ChainBase):
doubanid=_media.douban_id,
seasons=_meta.season,
episodes=_meta.episode,
image=_media.backdrop_path,
image=_media.get_backdrop_image(),
download_hash=_hash,
torrent_name=_torrent.title,
torrent_description=_torrent.description,

View File

@ -453,7 +453,7 @@ class DoubanSync(_PluginBase):
"title": doubaninfo.get("title") or mediainfo.title,
"type": mediainfo.type.value,
"year": mediainfo.year,
"poster": mediainfo.poster_path,
"poster": mediainfo.get_poster_image(),
"overview": mediainfo.overview,
"tmdbid": mediainfo.tmdb_id,
"doubanid": douban_id,