From be6a51b05273c301a31e34dc77ff8affcd8a37db Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 19 May 2025 15:28:27 -0400 Subject: [PATCH] The check list needs to pass if nothing failed --- tubesync/sync/models/media__tasks.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tubesync/sync/models/media__tasks.py b/tubesync/sync/models/media__tasks.py index d63f7b31..e8b33235 100644 --- a/tubesync/sync/models/media__tasks.py +++ b/tubesync/sync/models/media__tasks.py @@ -1,9 +1,11 @@ import os +from pathlib import Path from common.logger import log from common.errors import ( NoMetadataException, ) from django.utils import timezone +from django.utils.translation import gettext_lazy as _ from ..choices import Val, SourceResolution @@ -47,6 +49,7 @@ def download_checklist(self, skip_checks=False): f'the source has a download cap and the media is now too old, ' f'not downloading') return False + return True def download_finished(self, format_str, container, downloaded_filepath=None):