From deffd1fb5f5d6f0ba038ae6094bf9e5536e377b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Mon, 15 Jan 2024 07:00:28 +0100 Subject: [PATCH] Temporarily log link title --- appFn.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appFn.ts b/appFn.ts index 2bc8ff2..3a2c822 100644 --- a/appFn.ts +++ b/appFn.ts @@ -91,11 +91,12 @@ export const appFn = (app: Probot) => { if (found) { const html = await spotifyResponse.text(); - const { title, description } = await getMetaData({ html }); + const { description } = await getMetaData({ html }); const playlistMeta = (description || '') .split(' · ') .filter((text) => text !== 'Playlist'); + console.log(details); details = playlistMeta.join(' · '); }