d53795184c (r62707827)
This commit is contained in:
syuilo 2022-01-01 22:28:02 +09:00
parent 57d994db0c
commit 158dd49b3d

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;