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

This commit is contained in:
Maciej Pędzich 2024-01-09 07:24:05 +01:00 committed by GitHub
parent 07963969ac
commit a981c5854c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {