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(' · '); }