Browse Source

fix: fixed issue where artists would sometimes show up as an array on Stations

Kristian Vos 5 years ago
parent
commit
a9487266e3
1 changed files with 8 additions and 4 deletions
  1. 8 4
      frontend/components/Station/Station.vue

+ 8 - 4
frontend/components/Station/Station.vue

@@ -603,10 +603,6 @@ export default {
 						local.currentSong.skipDuration
 				);
 
-				if (local.currentSong.artists)
-					local.currentSong.artists = local.currentSong.artists.join(
-						", "
-					);
 				if (window.stationInterval !== 0)
 					clearInterval(window.stationInterval);
 				window.stationInterval = setInterval(function() {
@@ -968,6 +964,10 @@ export default {
 					_this.currentSong = res.data.currentSong
 						? res.data.currentSong
 						: {};
+					if (_this.currentSong.artists)
+						_this.currentSong.artists = _this.currentSong.artists.join(
+							", "
+						);
 					_this.type = res.data.type;
 					_this.startedAt = res.data.startedAt;
 					_this.paused = res.data.paused;
@@ -1061,6 +1061,10 @@ export default {
 				_this.timePaused = data.timePaused;
 				if (data.currentSong) {
 					_this.noSong = false;
+					if (_this.currentSong.artists)
+						_this.currentSong.artists = _this.currentSong.artists.join(
+							", "
+						);
 					_this.simpleSong =
 						data.currentSong.likes === -1 &&
 						data.currentSong.dislikes === -1;