From 3c19cc085b259d6acec4a14110bf1e7c4b99ad20 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Wed, 1 Apr 2026 19:31:05 -0700 Subject: [PATCH] Fix Wing It downloads not creating download bubble The discoverMetadata (needed for bubble creation) was only set for playlist IDs starting with discover_lb_, listenbrainz_, or source SoulSync. Wing It uses wing_it_ prefix which wasn't matched. Added wing_it_ to the condition so bubbles appear on dashboard and sidebar during Wing It downloads. --- webui/static/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/static/script.js b/webui/static/script.js index ac73400a..d89912d0 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -11892,7 +11892,7 @@ async function openDownloadMissingModalForYouTube(virtualPlaylistId, playlistNam 'YouTube'; // Store metadata for discover download sidebar (will be added when Begin Analysis is clicked) - if (source === 'SoulSync' || virtualPlaylistId.startsWith('discover_lb_') || virtualPlaylistId.startsWith('listenbrainz_')) { + if (source === 'SoulSync' || virtualPlaylistId.startsWith('discover_lb_') || virtualPlaylistId.startsWith('listenbrainz_') || virtualPlaylistId.startsWith('wing_it_')) { // Extract image URL from album context or first track's album cover let imageUrl = null; if (album && album.images && album.images.length > 0) {