fix: I misunderstood loops 💀
This commit is contained in:
parent
7dfee629f8
commit
b7e73178d2
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ class MusicDownloader(commands.Cog):
|
||||||
ytdlp_output = youtube_download(self, url, data_path, message)
|
ytdlp_output = youtube_download(self, url, data_path, message)
|
||||||
full_filename = os.path.join(data_path, ytdlp_output[0])
|
full_filename = os.path.join(data_path, ytdlp_output[0])
|
||||||
while not os.path.isfile(full_filename):
|
while not os.path.isfile(full_filename):
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(0.2)
|
||||||
if os.path.isfile(full_filename):
|
if os.path.isfile(full_filename):
|
||||||
with open(full_filename, 'rb') as file:
|
with open(full_filename, 'rb') as file:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue