fix: remove wrong urls

This commit is contained in:
Max Richter
2025-10-22 22:45:25 +02:00
parent bce3ea609e
commit e8bf992712
3 changed files with 11 additions and 11 deletions

View File

@@ -1,10 +1,10 @@
--- ---
import type { ImageMetadata } from "astro"; import type { ImageMetadata } from "astro";
import { Picture as AstroImage } from "astro:assets"; import { Picture as AstroImage } from "astro:assets";
import { inferRemoteSize } from 'astro/assets/utils'; import { inferRemoteSize } from "astro/assets/utils";
import { generateThumbHash, getExifData } from "@helpers/image"; import { generateThumbHash, getExifData } from "@helpers/image";
interface Props { interface Props {
src: ImageMetadata & { fsPath?: string, src?: string }; src: ImageMetadata & { fsPath?: string; src?: string };
alt: string; alt: string;
pictureClass?: string; pictureClass?: string;
class?: string; class?: string;
@@ -28,8 +28,8 @@ async function checkImage(image: ImageMetadata) {
} }
return false; return false;
} catch (err) { } catch (err) {
console.log("\n");
console.log("Failed to fetch: ", src); console.log("Failed to fetch: ", src);
console.log(err)
return false; return false;
} }
} }
@@ -43,7 +43,7 @@ const {
maxWidth, maxWidth,
} = Astro.props; } = Astro.props;
let thumbhash = hash && await generateThumbHash(image); let thumbhash = hash && (await generateThumbHash(image));
const imageOk = await checkImage(image); const imageOk = await checkImage(image);
let exif = imageOk && (await getExifData(image)); let exif = imageOk && (await getExifData(image));

Binary file not shown.

Binary file not shown.