fix(server): salvo change broke file uploads over a certain size #135
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/upload-size"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Due to a change in Salvo v0.89.0, file uploads over a certain size were broken.
This PR fixes this by using
Request::form_data_max_size()to handle file uploads.