Skip to content

Commit

Permalink
fix: copy object mime type if ingesting copy-record
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 30, 2024
1 parent 7efe232 commit 42887bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chord_drs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self, *args, **kwargs):
self.location = object_to_copy.location
self.size = object_to_copy.size
self.checksum = object_to_copy.checksum
self.mime_type
self.mime_type = object_to_copy.mime_type
del kwargs["object_to_copy"]
else:
location = kwargs.get("location")
Expand Down

0 comments on commit 42887bb

Please sign in to comment.