|
@@ -642,11 +642,6 @@ export default {
|
|
|
if (currentSong) {
|
|
|
this.updateNoSong(false);
|
|
|
|
|
|
- if (this.currentSong.artists)
|
|
|
- this.currentSong.artists = this.currentSong.artists.join(
|
|
|
- ", "
|
|
|
- );
|
|
|
-
|
|
|
if (!this.playerReady) this.youtubeReady();
|
|
|
else this.playVideo();
|
|
|
|
|
@@ -1518,11 +1513,6 @@ export default {
|
|
|
? res.data.currentSong
|
|
|
: {};
|
|
|
|
|
|
- if (currentSong.artists)
|
|
|
- currentSong.artists = currentSong.artists.join(
|
|
|
- ", "
|
|
|
- );
|
|
|
-
|
|
|
if (currentSong && !currentSong.thumbnail)
|
|
|
currentSong.ytThumbnail = `https://img.youtube.com/vi/${currentSong.songId}/mqdefault.jpg`;
|
|
|
|