From 87b7723e32ad7239d7307950c066d090f33d9459 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sat, 23 Nov 2024 20:20:49 +0100 Subject: [PATCH] Include page description in link text --- appFn.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appFn.ts b/appFn.ts index 78b82a1..04d6a7b 100644 --- a/appFn.ts +++ b/appFn.ts @@ -133,7 +133,7 @@ const appFn: ApplicationFunction = (app: Probot, { getRouter }) => { if (found) { const html = await spotifyResponse.text(); const { - author: authorUrl, + // author: authorUrl, description, title } = await getMetaData({ @@ -176,7 +176,7 @@ const appFn: ApplicationFunction = (app: Probot, { getRouter }) => { // .concat(authorName as string); // details = playlistMeta.join(' · '); - details = title!; + details = title! + '· ' + description; } numProcessedEntries++;