Fix: check if file is not empty and try importing it

This commit is contained in:
Aroy-Art 2025-04-03 12:32:23 +02:00
parent ad07b5ce9e
commit 510fff3059
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -117,7 +117,7 @@ class BaseImporter(ABC):
hash_blake3=file_hash
)
if created:
if created or not file_instance.file:
with open(file_path, "rb") as file:
file_instance.file.save(hash_file_name, file)