From 5abfe567753e2a4f572f255d8a13aa06841b604e Mon Sep 17 00:00:00 2001 From: jeffvli Date: Tue, 21 Sep 2021 06:47:04 -0700 Subject: [PATCH] Fix queue when double clicking a modified playlist --- src/components/playlist/PlaylistView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/playlist/PlaylistView.tsx b/src/components/playlist/PlaylistView.tsx index c7ba771..c4c50ce 100644 --- a/src/components/playlist/PlaylistView.tsx +++ b/src/components/playlist/PlaylistView.tsx @@ -150,7 +150,7 @@ const PlaylistView = ({ ...rest }) => { dispatch( setPlayQueueByRowClick({ entries: localPlaylistData, - currentIndex: e.index, + currentIndex: e.rowIndex, currentSongId: e.id, uniqueSongId: e.uniqueId, })