From 048a994f32ab80ec5c8c74a1668cd776b0d342c5 Mon Sep 17 00:00:00 2001 From: Joel Carlos Date: Thu, 28 Nov 2024 19:21:41 +0800 Subject: [PATCH] fix: Fixed Skip Disliked Song not working (#2651) --- src/plugins/skip-disliked-songs/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/skip-disliked-songs/index.ts b/src/plugins/skip-disliked-songs/index.ts index 655787a6..676fe11f 100644 --- a/src/plugins/skip-disliked-songs/index.ts +++ b/src/plugins/skip-disliked-songs/index.ts @@ -16,7 +16,7 @@ export default createPlugin< restartNeeded: false, renderer: { start() { - waitForElement('#dislike-button-renderer').then( + waitForElement('#like-button-renderer').then( (dislikeBtn) => { this.observer = new MutationObserver(() => { if (dislikeBtn?.getAttribute('like-status') == 'DISLIKE') {