Skip to content

Commit

Permalink
Actualizar index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
nubesurrealista authored Dec 19, 2024
1 parent 542ef61 commit 3bdd505
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ <h1>Mis Toots <img id="mastodon-icon" src="https://upload.wikimedia.org/wikipedi
const links = contentDiv.querySelectorAll('a');
for (const link of links) {
const url = link.href;
if (url.includes(instanceURL)) {
continue; // Skip links from the same Mastodon instance
}
const previewData = await fetchLinkPreview(url);
if (previewData) {
const previewHtml = `
Expand Down

0 comments on commit 3bdd505

Please sign in to comment.