fix: added a loop to wait for youtube_download to finish before proceeding

This commit is contained in:
Seaswimmer 2023-08-01 12:36:07 -04:00
parent fb6a12311b
commit 5a1c65a764
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -89,6 +89,8 @@ class MusicDownloader(commands.Cog):
message = await msg("YouTube Downloader started!")
filename = youtube_download(self, url, data_path, message)
full_filename = os.path.join(data_path, filename)
while not os.path.isfile(full_filename):
await asyncio.sleep(1)
if os.path.isfile(full_filename):
with open(full_filename, 'rb') as file:
await ctx.send(content="YouTube Downloader completed!\nDownloaded file:", file=discord.File(file, {filename}))