fix: improve discover sync toast to say syncing to library instead of analyzing

This commit is contained in:
JohnBaumb 2026-04-27 14:09:59 -07:00
parent 0ec8b25a17
commit ed626e650c

View file

@ -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');