This commit is contained in:
熊潇 2025-06-19 00:18:53 +08:00
parent 391c43c6b7
commit d29f69452c
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,6 @@ export const authMinio = async (req: IncomingMessage, res: ServerResponse, objec
etag, etag,
'last-modified': lastModified, 'last-modified': lastModified,
'Content-Disposition': contentDisposition, 'Content-Disposition': contentDisposition,
'file-name': filename,
...filteredMetaData, ...filteredMetaData,
}); });
const objectStream = await minioClient.getObject(bucketName, objectName); const objectStream = await minioClient.getObject(bucketName, objectName);

View File

@ -5,7 +5,8 @@ router.all('/api/s1/share/*splat', async (req, res) => {
try { try {
const url = req.url; const url = req.url;
const _url = new URL(url || '', 'http://localhost'); const _url = new URL(url || '', 'http://localhost');
const objectName = _url.pathname.replace('/api/s1/share/', ''); let objectName = _url.pathname.replace('/api/s1/share/', '');
objectName = decodeURIComponent(objectName);
await authMinio(req, res, objectName); await authMinio(req, res, objectName);
} catch (e) { } catch (e) {
console.log('get share resource error url', req.url); console.log('get share resource error url', req.url);