mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-29 17:33:02 +00:00
Fix: proxy-media後のContent-Typeが違う (#5143)
This commit is contained in:
parent
2cb032b0e0
commit
70691e1523
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export async function proxyMedia(ctx: Koa.BaseContext) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx.set('Content-Type', type);
|
ctx.set('Content-Type', image.type);
|
||||||
ctx.set('Cache-Control', 'max-age=31536000, immutable');
|
ctx.set('Cache-Control', 'max-age=31536000, immutable');
|
||||||
ctx.body = image.data;
|
ctx.body = image.data;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in a new issue