From 5d5a70ec257210becafff79e2eb03d2a244578a5 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Thu, 21 May 2026 20:58:40 +0200 Subject: [PATCH] fix the skip count to render thing --- modules/web/web.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/web/web.js b/modules/web/web.js index b2c5219..c741f36 100644 --- a/modules/web/web.js +++ b/modules/web/web.js @@ -204,6 +204,10 @@ function renderPlaylist() { } else if (i === currentTrackIndex) { li.classList.add("pointer"); currentIndex = i - 1; + if(skipCountToRender > 0) { + li.style.textDecoration = "line-through"; + skipCountToRender--; + } } if (skipCountToRender > 0 && i > currentTrackIndex) {