Fix style + nix?

This commit is contained in:
TomatoCake 2024-06-28 12:59:13 +02:00
parent a987671e4a
commit c135de9c86
2 changed files with 6 additions and 2 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -26,7 +26,7 @@ let sharp: undefined | false | { default: typeof import("sharp") } = undefined;
let Jimp: JimpType | undefined = undefined; let Jimp: JimpType | undefined = undefined;
try { try {
Jimp = require("jimp") as JimpType; Jimp = require("jimp") as JimpType;
} catch { } catch {
// empty // empty
} }
@ -120,7 +120,11 @@ export async function ImageProxy(req: Request, res: Response) {
const arrayBuffer = await request.arrayBuffer(); const arrayBuffer = await request.arrayBuffer();
let resultBuffer = Buffer.from(arrayBuffer); let resultBuffer = Buffer.from(arrayBuffer);
if (!sentImageProxyWarning && resizeSupported.has(contentType) && /^\d+x\d+$/.test(path[1])) { if (
!sentImageProxyWarning &&
resizeSupported.has(contentType) &&
/^\d+x\d+$/.test(path[1])
) {
if (sharp !== false) { if (sharp !== false) {
try { try {
sharp = await import("sharp"); sharp = await import("sharp");