fix 精细化刷新,最新入库支持刷新单集演职人员中文

This commit is contained in:
thsrite
2024-08-15 13:39:51 +08:00
parent 155503895b
commit 6df775089b
4 changed files with 101 additions and 16 deletions

View File

@@ -1068,8 +1068,8 @@ class CloudAssistant(_PluginBase):
"""
if not self._EMBY_HOST or not self._EMBY_APIKEY:
return False
req_url = "%semby/Items/%s/Refresh?MetadataRefreshMode=Default" \
"&ImageRefreshMode=Default&ReplaceAllMetadata=true&ReplaceAllImages=true&api_key=%s" % (
req_url = "%semby/Items/%s/Refresh?MetadataRefreshMode=FullRefresh" \
"&ImageRefreshMode=FullRefresh&ReplaceAllMetadata=true&ReplaceAllImages=true&api_key=%s" % (
self._EMBY_HOST, item_id, self._EMBY_APIKEY)
try:
with RequestUtils().post_res(req_url) as res: