django2.2: fix breaking change for getting uploaded files size

This commit is contained in:
2019-10-06 14:11:38 +02:00
parent cf3f5ea60c
commit d7075eb762
4 changed files with 4 additions and 4 deletions

View File

@ -109,7 +109,7 @@ class AddFilesForm(forms.Form):
owner=owner,
is_folder=False,
mime_type=f.content_type,
size=f._size,
size=f.size,
)
try:
new_file.clean()