Ensure playlist's title doesn't get added to link text twice

This commit is contained in:
2024-01-09 07:24:05 +01:00
committed by GitHub
parent 07963969ac
commit a981c5854c

View File

@@ -96,7 +96,7 @@ export const appFn = (app: Probot) => {
.split(' · ') .split(' · ')
.filter((text) => text !== 'Playlist'); .filter((text) => text !== 'Playlist');
details = [title, ...playlistMeta].join(' · '); details = playlistMeta.join(' · ');
} }
return { return {