From a6082a5288c02e1f43765883cddca8f48248646c Mon Sep 17 00:00:00 2001 From: edideaur Date: Thu, 2 Apr 2026 18:32:48 +0000 Subject: [PATCH] fix:blocking --- js/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/events.js b/js/events.js index 46a7a9f..348d5b5 100644 --- a/js/events.js +++ b/js/events.js @@ -1336,7 +1336,7 @@ export async function handleTrackAction( // Individual Track Actions // Check if track/artist is blocked const { contentBlockingSettings } = await import('./storage.js'); - if (type === 'track' && contentBlockingSettings.shouldHideTrack(item)) { + if (type === 'track' && action !== 'block-track' && contentBlockingSettings.shouldHideTrack(item)) { showNotification('This track is blocked'); return; }