From 69a16d83198e2d901a8ce51c4a8e83ac23557c3a Mon Sep 17 00:00:00 2001 From: wangxiaolei Date: Thu, 30 Jul 2026 18:23:29 +0800 Subject: [PATCH] feat: change api/v1/plugins/download to api/v1/plugins/download-url (#39811) --- api/core/helper/marketplace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/helper/marketplace.py b/api/core/helper/marketplace.py index e6e1d565769..e14c7185858 100644 --- a/api/core/helper/marketplace.py +++ b/api/core/helper/marketplace.py @@ -19,7 +19,7 @@ MARKETPLACE_TIMEOUT = 30 def get_plugin_pkg_url(plugin_unique_identifier: str) -> str: query = urlencode({"unique_identifier": plugin_unique_identifier}) - return f"{marketplace_api_url / 'api/v1/plugins/download'}?{query}" + return f"{marketplace_api_url / 'api/v1/plugins/download-url'}?{query}" def download_plugin_pkg(plugin_unique_identifier: str) -> bytes: