From a7eec709eb957b5db522cd6e610e226008cc43e7 Mon Sep 17 00:00:00 2001 From: Terry Geng Date: Tue, 19 May 2020 21:53:08 +0800 Subject: [PATCH] fix: player display bug, continue --- static/js/custom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/custom.js b/static/js/custom.js index 2b71583..69d6c82 100644 --- a/static/js/custom.js +++ b/static/js/custom.js @@ -236,7 +236,7 @@ function checkForPlaylistUpdate() { updatePlaylist(); } else { playlist_current_index = data.current_index; - updatePlayerInfo(playlist_items[data.current_index]); + updatePlayerInfo(playlist_items[data.current_index - data.start_from]); displayActiveItem(data.current_index); } }