Do not unset Media.media_file

This could be a temporary condition, and keeping the old path in the database is not harmful for the software.
This commit is contained in:
tcely 2025-02-14 18:53:03 -05:00 committed by GitHub
parent afcefc04c1
commit e5f76efebf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -187,7 +187,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.media_file = None
downloaded = False
if (instance.source.download_media and instance.can_download) and not (
instance.skip or downloaded or existing_media_download_task):