From b56945b64b80a47c8b64ffa8c24d7ee1ac767f79 Mon Sep 17 00:00:00 2001 From: "cool.gitter.choco" Date: Sun, 9 Feb 2025 20:19:52 -0600 Subject: [PATCH] reduced to 2 ms --- static/js/playlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/playlist.js b/static/js/playlist.js index a9ecb25..7bf246a 100644 --- a/static/js/playlist.js +++ b/static/js/playlist.js @@ -251,7 +251,7 @@ async function downloadPlaylistAlbums(playlist) { { name: album.name } ); // Wait 20 milliseconds before proceeding to the next album. - await new Promise(resolve => setTimeout(resolve, 20)); + await new Promise(resolve => setTimeout(resolve, 2)); } } catch (error) { // Propagate any errors encountered.