d53795184c (r62707827)
This commit is contained in:
syuilo 2022-01-01 22:28:02 +09:00
parent 6bd6b72e1b
commit 382d6a3dd9

View File

@ -19,6 +19,7 @@ export async function proxyMedia(ctx: Koa.Context) {
const { mime, ext } = await detectType(path);
if (!mime.startsWith('image/')) throw 403;
if (!FILE_TYPE_BROWSERSAFE.includes(mime)) throw 403;
let image: IImage;