Only save() the current Media

This commit is contained in:
tcely 2025-01-27 13:17:16 -05:00 committed by GitHub
parent a44e856378
commit eb27bf1583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1600,8 +1600,7 @@ class Media(models.Model):
# update the media_file in the db
self.media_file.name = str(new_video_path.relative_to(self.media_file.storage.location))
self.save(update_fields={'media_file'})
self.refresh_from_db(fields={'media_file'})
self.save()
log.info(f'Updated "media_file" in the database for: {self!s}')
(new_prefix_path, new_stem) = directory_and_stem(new_video_path)