Do not unset Media.downloaded when the file is not found

This commit is contained in:
tcely 2025-02-14 18:44:15 -05:00 committed by GitHub
parent 806dde6cac
commit 986fda59ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -186,7 +186,6 @@ def media_post_save(sender, instance, created, **kwargs):
if instance.can_download and instance.downloaded:
skip_changed = True != instance.skip
instance.skip = True
instance.downloaded = False
instance.media_file = None
if (instance.source.download_media and instance.can_download) and not (
instance.skip or instance.downloaded or existing_media_download_task):