This commit is contained in:
syuilo 2022-09-18 23:36:00 +09:00
parent 91d2c954fc
commit 2fbd09a07e
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ export class FileServerService {
ctx.set('Content-Disposition', contentDisposition('inline', filename));
} else {
const readable = this.internalStorageService.read(file.accessKey!);
readable.on('error', commonReadableHandlerGenerator(ctx));
readable.on('error', this.commonReadableHandlerGenerator(ctx));
ctx.body = readable;
ctx.set('Content-Type', FILE_TYPE_BROWSERSAFE.includes(file.type) ? file.type : 'application/octet-stream');
ctx.set('Cache-Control', 'max-age=31536000, immutable');