From 40f9c560381ac1892f681a61549ab6a9ce7b5b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E4=BA=AE=E4=BA=AE?= Date: Mon, 15 Jan 2024 16:20:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=9B=BE=E7=89=87=E7=9A=84=E5=9F=9F?= =?UTF-8?q?=E5=90=8D=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- functions/rest/routes/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/rest/routes/index.ts b/functions/rest/routes/index.ts index d7a40b8..b5f1c36 100644 --- a/functions/rest/routes/index.ts +++ b/functions/rest/routes/index.ts @@ -76,7 +76,7 @@ router.post('/list', auth, async (req: Request, env: Env) => { const objs = list.objects const urls = objs.map(it => { return { - url: BASE_URL + `${include}/${it.key}`, + url: `${BASE_URL}/${it.key}`, key: it.key, size: it.size } @@ -114,7 +114,7 @@ router.post('/upload', auth, async (req: Request, env: Env) => { urls.push({ key: object.key, size: object.size, - url: BASE_URL + `/${object.key}`, + url: `${BASE_URL}/${object.key}`, filename: item.name }) }