From bb511de55291729b9d10cac95a61d2f1498e19ab Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Sun, 24 May 2026 12:47:45 -0300 Subject: [PATCH] Use download_stream instead of _download_ytdlp_async --- gamdl/downloader/uploaded_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamdl/downloader/uploaded_video.py b/gamdl/downloader/uploaded_video.py index 7e02900..0b88cfe 100644 --- a/gamdl/downloader/uploaded_video.py +++ b/gamdl/downloader/uploaded_video.py @@ -46,7 +46,7 @@ class AppleMusicUploadedVideoDownloader: self, download_item: DownloadItem, ) -> None: - await self.base._download_ytdlp_async( + await self.base.download_stream( download_item.media.stream_info.video_track.stream_url, download_item.staged_path, )