fix:图片地址的问题

This commit is contained in:
李亮亮 2024-01-15 16:01:44 +08:00
parent 5afed2da14
commit 07db42a346
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ router.post('/list', auth, async (req : Request, env : Env) => {
const objs = list.objects
const urls = objs.map(it => {
return <ImgItem> {
url: `${BASE_URL}${include}/${it.key}`,
url: BASE_URL+`${include}/${it.key}`,
key: it.key,
size: it.size
}
@ -113,7 +113,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
})
}