From ed626e650c0005296613391599836110a3839323 Mon Sep 17 00:00:00 2001 From: JohnBaumb <80135794+JohnBaumb@users.noreply.github.com> Date: Mon, 27 Apr 2026 14:09:59 -0700 Subject: [PATCH] fix: improve discover sync toast to say syncing to library instead of analyzing --- webui/static/discover.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/static/discover.js b/webui/static/discover.js index 828f1881..4aae4d91 100644 --- a/webui/static/discover.js +++ b/webui/static/discover.js @@ -9295,7 +9295,7 @@ async function _doSyncDiscoverPlaylist(playlistType, playlistName) { const result = await batchResponse.json(); if (result.success) { - showToast(`${playlistName}: analyzing ${syncTracks.length} tracks...`, 'info'); + showToast(`${playlistName}: syncing ${syncTracks.length} tracks to library...`, 'info'); const card = document.getElementById(`discover-sync-card-${playlistType}`); if (card) { const statusEl = card.querySelector('.discover-sync-status');