From c79fdd98877dc410c3d3a964eebbecea88c8f53b Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Sat, 14 Oct 2023 14:03:47 +0900 Subject: [PATCH] fix: empty title playlist directory path --- plugins/downloader/back.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/downloader/back.ts b/plugins/downloader/back.ts index 47d1d860..fe63d9bb 100644 --- a/plugins/downloader/back.ts +++ b/plugins/downloader/back.ts @@ -470,7 +470,7 @@ export async function downloadPlaylist(givenUrl?: string | URL) { ?.as(YTNodes.MusicResponsiveListItemFlexColumn) ?.title ?.text ?? - ''; + 'NO_TITLE'; const isAlbum = !normalPlaylistTitle; let safePlaylistTitle = filenamify(playlistTitle, { replacement: ' ' });