fix: 🚑 thumbnail serving
This commit is contained in:
parent
dc2fde0a75
commit
4a848adc34
@ -167,7 +167,6 @@ export default async function (ctx: Koa.Context) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx.length = file.size;
|
|
||||||
ctx.set("Content-Disposition", contentDisposition("inline", filename));
|
ctx.set("Content-Disposition", contentDisposition("inline", filename));
|
||||||
ctx.set("Content-Type", contentType);
|
ctx.set("Content-Type", contentType);
|
||||||
|
|
||||||
@ -192,7 +191,6 @@ export default async function (ctx: Koa.Context) {
|
|||||||
ctx.set("Accept-Ranges", "bytes");
|
ctx.set("Accept-Ranges", "bytes");
|
||||||
} else {
|
} else {
|
||||||
ctx.status = 206;
|
ctx.status = 206;
|
||||||
ctx.length = readable.size;
|
|
||||||
readable.on("close", async () => {
|
readable.on("close", async () => {
|
||||||
await fileHandle.close();
|
await fileHandle.close();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user