From 722bf3832e83c8c0895b0d00eada2146d0c52919 Mon Sep 17 00:00:00 2001 From: aandrew-me Date: Sat, 22 Nov 2025 23:04:09 +0300 Subject: [PATCH] Fix yt-dlp path handling in playlist.js --- src/playlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playlist.js b/src/playlist.js index 8442621..604e415 100644 --- a/src/playlist.js +++ b/src/playlist.js @@ -106,7 +106,7 @@ const playlistDownloader = { loadInitialConfig() { // yt-dlp path this.state.ytDlpPath = localStorage.getItem("ytdlp"); - this.state.ytDlp = new YTDlpWrap(`"${this.state.ytDlpPath}"`); + this.state.ytDlpWrap = new YTDlpWrap(`"${this.state.ytDlpPath}"`); const defaultDownloadsDir = path.join(os.homedir(), "Downloads"); let preferredDir =