fix: oops lol

This commit is contained in:
Seaswimmer 2023-08-01 13:24:15 -04:00
parent d9f9fafd9f
commit 301f9f73c9
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -52,7 +52,7 @@ class MusicDownloader(commands.Cog):
'verbose': True
}
with YoutubeDL(ydl_opts) as ydl:
info = ydl.extract_info(url=url, false=True)
info = ydl.extract_info(url=url, download=False)
title = info['title']
id = info['id']
filename = title + f' [{id}].m4a'