v
Some checks failed
smoke-mm / Install & smoke test mm --help (push) Has been cancelled

This commit is contained in:
2025-12-28 04:13:11 -08:00
parent 6acb52dfa0
commit edde074cc7
3 changed files with 186 additions and 29 deletions

View File

@@ -113,11 +113,19 @@ class AllDebrid(Provider):
try:
from SYS.download import _download_direct_file
pipe_progress = None
try:
if isinstance(self.config, dict):
pipe_progress = self.config.get("_pipeline_progress")
except Exception:
pipe_progress = None
dl_res = _download_direct_file(
unlocked_url,
Path(output_dir),
quiet=quiet,
suggested_filename=suggested_name,
pipeline_progress=pipe_progress,
)
downloaded_path = getattr(dl_res, "path", None)
if downloaded_path is None: