From b0018e747bb86feeac71f4d95ea7827e5a712f33 Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Thu, 3 Sep 2026 20:49:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8F=90=E5=8F=96=E8=A7=86=E9=A2=91?= =?UTF-8?q?=E9=85=8D=E9=9F=B3=20API=20=E8=B7=AF=E5=BE=84=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E4=B8=BA=20/voices/extract-voice=20(#1665)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/api/tts/jobs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/api/tts/jobs.ts b/apps/web/src/api/tts/jobs.ts index 9a7468994..3bc6d4ab7 100644 --- a/apps/web/src/api/tts/jobs.ts +++ b/apps/web/src/api/tts/jobs.ts @@ -84,7 +84,7 @@ export const extractVideoVoice = async ( return new Promise((resolve, reject) => { const xhr = new XMLHttpRequest() - xhr.open("POST", "/api/v1/tts/extract-video-voice") + xhr.open("POST", "/api/v1/voices/extract-voice") // 携带认证 token(从 localStorage 获取,与 apiClient 拦截器一致) const token = localStorage.getItem("access_token")