fix: improve discover sync toast to say syncing to library instead of analyzing
This commit is contained in:
parent
0ec8b25a17
commit
ed626e650c
1 changed files with 1 additions and 1 deletions
|
|
@ -9295,7 +9295,7 @@ async function _doSyncDiscoverPlaylist(playlistType, playlistName) {
|
||||||
|
|
||||||
const result = await batchResponse.json();
|
const result = await batchResponse.json();
|
||||||
if (result.success) {
|
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}`);
|
const card = document.getElementById(`discover-sync-card-${playlistType}`);
|
||||||
if (card) {
|
if (card) {
|
||||||
const statusEl = card.querySelector('.discover-sync-status');
|
const statusEl = card.querySelector('.discover-sync-status');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue