mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-28 14:58:09 +09:00
proxyで400番台はそのステータスを返す (#4154)
This commit is contained in:
parent
db41ca8d85
commit
93eecddee9
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user