Explorar el Código

fix(AddToPlaylistDropdown): sometimes song would fail to be removed locally

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan hace 4 años
padre
commit
36403e6ef2
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      frontend/src/components/ui/AddToPlaylistDropdown.vue

+ 2 - 2
frontend/src/components/ui/AddToPlaylistDropdown.vue

@@ -119,10 +119,10 @@ export default {
 
 						if (res.status === "success") {
 							this.playlists[index].songs.forEach(
-								(song, index) => {
+								(song, songIndex) => {
 									if (song.songId === this.song.songId)
 										this.playlists[index].songs.splice(
-											index,
+											songIndex,
 											1
 										);
 								}