proxyで400番台はそのステータスを返す (#4154)

This commit is contained in:
MeiMei 2019-02-06 00:20:00 +09:00 committed by syuilo
parent 8a11322802
commit 18fd39b335

View file

@ -42,7 +42,12 @@ export async function proxyMedia(ctx: Koa.BaseContext) {
ctx.body = image.data;
} catch (e) {
serverLogger.error(e);
ctx.status = 500;
if (typeof e == 'number' && e >= 400 && e < 500) {
ctx.status = e;
} else {
ctx.status = 500;
}
} finally {
cleanup();
}