Merge branch 'fix/chore-fix' into dev/plugin-deploy

This commit is contained in:
Yeuoly 2024-11-08 17:27:35 +08:00
commit 1a5c2d1d58
No known key found for this signature in database
GPG Key ID: A66E7E320FB19F61

View File

@ -26,4 +26,4 @@ def batch_fetch_plugin_manifests(plugin_ids: list[str]) -> Sequence[MarketplaceP
url = str(URL(str(dify_config.MARKETPLACE_API_URL)) / "api/v1/plugins/batch")
response = requests.post(url, json={"plugin_ids": plugin_ids})
response.raise_for_status()
return [MarketplacePluginDeclaration(**plugin) for plugin in response.json()["plugins"]]
return [MarketplacePluginDeclaration(**plugin) for plugin in response.json()["data"]["plugins"]]