瀏覽代碼

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 年之前
父節點
當前提交
36403e6ef2
共有 1 個文件被更改,包括 2 次插入2 次删除
  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
 										);
 								}