Bläddra i källkod

fix: unfavoriting station

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 5 år sedan
förälder
incheckning
9ecd92d645
1 ändrade filer med 6 tillägg och 1 borttagningar
  1. 6 1
      frontend/components/pages/Home.vue

+ 6 - 1
frontend/components/pages/Home.vue

@@ -177,6 +177,7 @@ export default {
 					station.currentSong.ytThumbnail = `https://img.youtube.com/vi/${station.currentSong.songId}/mqdefault.jpg`;
 				this.stations.push(station);
 			});
+
 			this.socket.on(
 				"event:userCount.updated",
 				(stationId, userCount) => {
@@ -188,6 +189,7 @@ export default {
 					});
 				}
 			);
+
 			this.socket.on("event:station.nextSong", (stationId, song) => {
 				let newSong = song;
 				this.stations.forEach(s => {
@@ -203,11 +205,14 @@ export default {
 					}
 				});
 			});
+
 			this.socket.on("event:user.favoritedStation", stationId => {
 				this.favoriteStations.push(stationId);
 			});
+
 			this.socket.on("event:user.unfavoritedStation", stationId => {
-				this.favoriteStations.$remove(stationId);
+				const index = this.favoriteStations.indexOf(stationId);
+				this.favoriteStations.splice(index, 1);
 			});
 		});
 	},