profile: fix displaying website metadata

was using the wrong key and did not update
pull/84/head
OFF0 9 months ago
parent f9fc0162ff
commit a2cf5c90b9
Signed by: offbyn
GPG Key ID: 94A2F643C51F37FA

@ -37,7 +37,7 @@ const transformMetadata = (data: unknown): Profile | undefined => {
name,
...(hasAboutString && {about: data.about as string}),
...(hasPictureString && {picture: data.picture as string}),
...(hasWebsite && {hasWebsite: data.website as string})
...(hasWebsite && {website: data.website as string})
};
};
@ -126,4 +126,15 @@ export const renderProfile = (pubkey: string) => {
detail?.append(...content);
}
}
if (metadata.website) {
const website = detail.querySelector('[data-website]');
if (website) {
const url = metadata.website.toLowerCase().startsWith('http') ? metadata.website : `https://${metadata.website}`;
const [content] = parseTextContent(url);
website.replaceChildren(...content);
(website as HTMLDivElement).hidden = false;
} else {
detail.append(elem('div', {data: {website: ''}}, metadata.name));
}
}
};

Loading…
Cancel
Save