This commit is contained in:
2024-10-28 15:01:17 +01:00
parent cea96e170d
commit 1e081c83e5
9 changed files with 101 additions and 5 deletions

View File

@@ -19,7 +19,9 @@ const userProfileHandler = async function (ctx: Context) {
if (profileEvent) {
const profile = new Profile(profileEvent, username);
const articles = await fetchArticlesByAuthor(pubkey, 210);
const articles = await fetchArticlesByAuthor(pubkey, 210, ctx.state.tags);
const html = await profilePageHtml(profile, articles);
generateOgProfileImage(profile);