(artist: string, title: string)
| 239 | } |
| 240 | |
| 241 | function buildNormalizedFileName(artist: string, title: string): string { |
| 242 | return `${normalizeTextForFile(title)} - ${normalizeTextForFile(artist)}`; |
| 243 | } |
| 244 | |
| 245 | async function downloadYtDlp(msg: Api.Message, isUpdate: boolean = false): Promise<void> { |
| 246 | if (isUpdate && fs.existsSync(YTDLP_PATH)) { |
no test coverage detected