django-oscar / django-oscar-api

RESTful JSON API for django-oscar
Other
363 stars 160 forks source link

Fix images going over the max file size not being processed. #305

Closed joeyjurjens closed 1 year ago

joeyjurjens commented 1 year ago

When you go over the max_size limit, the SpooledTemporaryFile creates a TemporaryFile. But this TemporaryFile could not be read, because the mode was set to "wb" (write binary).