proxyで400番台はそのステータスを返す (#4154)
This commit is contained in:
parent
8a11322802
commit
18fd39b335
|
@ -42,7 +42,12 @@ export async function proxyMedia(ctx: Koa.BaseContext) {
|
||||||
ctx.body = image.data;
|
ctx.body = image.data;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
serverLogger.error(e);
|
serverLogger.error(e);
|
||||||
|
|
||||||
|
if (typeof e == 'number' && e >= 400 && e < 500) {
|
||||||
|
ctx.status = e;
|
||||||
|
} else {
|
||||||
ctx.status = 500;
|
ctx.status = 500;
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
cleanup();
|
cleanup();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue