mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
oops
This commit is contained in:
parent
0efa3d9f44
commit
c4bb9869a0
1 changed files with 3 additions and 3 deletions
|
@ -27,16 +27,16 @@ export default async function(ctx: Koa.Context) {
|
|||
|
||||
if (file == null) {
|
||||
ctx.status = 404;
|
||||
await send(ctx, `${__dirname}/assets/dummy.png`, { root: assets });
|
||||
await send(ctx, '/dummy.png', { root: assets });
|
||||
return;
|
||||
}
|
||||
|
||||
if (file.metadata.deletedAt) {
|
||||
ctx.status = 410;
|
||||
if (file.metadata.isExpired) {
|
||||
await send(ctx, `${__dirname}/assets/cache-expired.png`, { root: assets });
|
||||
await send(ctx, '/cache-expired.png', { root: assets });
|
||||
} else {
|
||||
await send(ctx, `${__dirname}/assets/tombstone.png`, { root: assets });
|
||||
await send(ctx, '/tombstone.png', { root: assets });
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue