feat: improve some error messages
All checks were successful
Deploy to SFTP Server / build (push) Successful in 4m6s
All checks were successful
Deploy to SFTP Server / build (push) Successful in 4m6s
This commit is contained in:
@@ -3,7 +3,7 @@ import type { ImageMetadata } from "astro";
|
||||
import { Picture as AstroImage } from "astro:assets";
|
||||
import { generateThumbHash, getExifData } from "@helpers/image";
|
||||
interface Props {
|
||||
src: ImageMetadata;
|
||||
src: ImageMetadata & { fsPath?: string };
|
||||
alt: string;
|
||||
pictureClass?: string;
|
||||
class?: string;
|
||||
@@ -22,7 +22,7 @@ const {
|
||||
maxWidth,
|
||||
} = Astro.props;
|
||||
|
||||
let thumbhash = hash ? await generateThumbHash(image) : "";
|
||||
let thumbhash = hash && image.fsPath ? await generateThumbHash(image) : "";
|
||||
|
||||
let exif = await getExifData(image);
|
||||
|
||||
|
Reference in New Issue
Block a user