Cache failed url-preview (apply to proxy/client) (#2154)

This commit is contained in:
MeiMei
2018-08-11 18:04:59 +09:00
committed by syuilo
parent 3c90abfb96
commit a8f142096c
2 changed files with 11 additions and 7 deletions

View File

@ -14,7 +14,9 @@ module.exports = async (ctx: Koa.Context) => {
ctx.body = summary;
} catch (e) {
ctx.status = 500;
ctx.status = 200;
ctx.set('Cache-Control', 'max-age=86400, immutable');
ctx.body = '{}';
}
};