Fix artist name in track search

This commit is contained in:
Renato "Lond" Cerqueira 2021-01-17 16:22:46 +01:00
parent e5a9da78d6
commit 248e42f841
2 changed files with 2 additions and 1 deletions

View file

@ -118,7 +118,7 @@ async function lookupTrack(id) {
let description = song_meta.shortDescription.split("\n\n")
let album_name = description[2]
let artists = description[1].split(' · ')
let artists = description[1].split(' · ').slice(1)
const artwork = {
small: song_meta.thumbnail.thumbnails[0].url,