album & song name no longer have to be the same for album to be hidden, album name just has to be in the song name.

This commit is contained in:
bingus_violet 2024-12-05 01:17:14 -06:00
parent 3c54fd7778
commit 12670d0ac5

View file

@ -132,7 +132,7 @@ module.exports = {
var text1 = onlyIfExists("<span style='font-size: 1.3rem;'>" + makeCompat(activity.song) + "</span>", activity.song) || activity.details
var text2 = onlyIfExists("By: " + activity.artist, activity.artist) || activity.state
var text3 = onlyIfExists("On: " + activity.album, activity.album != activity.song && activity.album)
var text3 = onlyIfExists("On: " + activity.album, activity.album && !activity.song.includes(activity.album))
addedHTML += `
<div class="chip activity grid-child" id="activity${index}">