Join artist/album with hyphen in song history.

This commit is contained in:
Buster Neece 2022-12-31 08:17:36 -06:00
parent 9862a28fbe
commit 2d4d574513
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ const unixTimestampToDate = (timestamp) => {
};
const albumAndArtist = (song) => {
return [song.artist, song.album].filter(str => !!str).join(', ');
return [song.artist, song.album].filter(str => !!str).join(' - ');
};
</script>