Skip to content

Commit a8f9697

Browse files
committed
fix: LinkPreview try catch
1 parent cd8cbc3 commit a8f9697

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

src/components/LinkPreview.astro

+22-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,28 @@ interface Props {
88
import jsdom from "jsdom";
99
const { src, title: _title, description: _description } = Astro.props;
1010
11-
const response = await fetch(src);
12-
const html = await response.text();
13-
const { document } = new jsdom.JSDOM(html)?.window;
14-
const title = _title || document.querySelector("title")?.textContent;
15-
const description =
16-
_description ||
17-
document.querySelector("meta[name=description]")?.getAttribute("content");
18-
const image = document
19-
.querySelector("meta[property='og:image']")
20-
?.getAttribute("content");
11+
let title = _title;
12+
let description = _description;
13+
let image: string | null | undefined;
14+
15+
try {
16+
const response = await fetch(src);
17+
const html = await response.text();
18+
const { document } = new jsdom.JSDOM(html)?.window;
19+
20+
title = title || document.querySelector("title")?.textContent || src;
21+
description =
22+
description ||
23+
document.querySelector("meta[name=description]")?.getAttribute("content") ||
24+
"No description available";
25+
image = document
26+
.querySelector("meta[property='og:image']")
27+
?.getAttribute("content");
28+
} catch (error) {
29+
console.error(`Failed to fetch or parse ${src}:`, error);
30+
title = title || src;
31+
description = description || "No description available";
32+
}
2133
---
2234

2335
<a

0 commit comments

Comments
 (0)