mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 12:39:59 +01:00
Catch error
This commit is contained in:
parent
fbbd16d1cd
commit
89144adebc
@ -2,14 +2,18 @@ import * as Koa from 'koa';
|
|||||||
import summaly from 'summaly';
|
import summaly from 'summaly';
|
||||||
|
|
||||||
module.exports = async (ctx: Koa.Context) => {
|
module.exports = async (ctx: Koa.Context) => {
|
||||||
const summary = await summaly(ctx.query.url);
|
try {
|
||||||
summary.icon = wrap(summary.icon);
|
const summary = await summaly(ctx.query.url);
|
||||||
summary.thumbnail = wrap(summary.thumbnail);
|
summary.icon = wrap(summary.icon);
|
||||||
|
summary.thumbnail = wrap(summary.thumbnail);
|
||||||
|
|
||||||
// Cache 7days
|
// Cache 7days
|
||||||
ctx.set('Cache-Control', 'max-age=604800, immutable');
|
ctx.set('Cache-Control', 'max-age=604800, immutable');
|
||||||
|
|
||||||
ctx.body = summary;
|
ctx.body = summary;
|
||||||
|
} catch (e) {
|
||||||
|
ctx.status = 500;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function wrap(url: string): string {
|
function wrap(url: string): string {
|
||||||
|
Loading…
Reference in New Issue
Block a user