Selaa lähdekoodia

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 vuotta sitten
vanhempi
commit
36403e6ef2
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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
 										);
 								}