fix: increased sleep time to hopefully prevent bugs

This commit is contained in:
Seaswimmer 2023-08-02 01:38:57 -04:00
parent b6d948ae31
commit 7dfee629f8
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -152,7 +152,7 @@ class MusicDownloader(commands.Cog):
ytdlp_output = youtube_download(self, url, data_path, message)
full_filename = os.path.join(data_path, ytdlp_output[0])
while not os.path.isfile(full_filename):
await asyncio.sleep(0.5)
await asyncio.sleep(1)
if os.path.isfile(full_filename):
with open(full_filename, 'rb') as file:
try: