add error reporting to download process
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m53s

This commit is contained in:
2025-07-12 16:51:15 -04:00
parent 4986ab5e8d
commit 3ffb2e4640

View File

@@ -126,16 +126,29 @@ class DownloadVideo(ui.View):
worker_task = asyncio.create_task(progress_worker(msg)) worker_task = asyncio.create_task(progress_worker(msg))
error = None
async def progress_callback(percent): async def progress_callback(percent):
await progress_queue.put(percent) await progress_queue.put(percent)
await asyncio.to_thread( loop = asyncio.get_running_loop()
ytdlp.download_video, self.url, format_string, out_path, temp_path, progress_callback, asyncio.get_event_loop() def threaded_download():
) nonlocal error
try:
ytdlp.download_video(
self.url, format_string, out_path, temp_path, progress_callback, loop
)
except Exception as e:
error = e
await asyncio.to_thread(threaded_download)
stop_event.set() stop_event.set()
await worker_task await worker_task
if error:
await msg.edit(content=f"❌ Download failed: {error}")
return
# Show completion and summary # Show completion and summary
await msg.edit(content="✅ Download complete!\n" await msg.edit(content="✅ Download complete!\n"
) )