You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multiple file upload seems to not be handled correctly. If a user selects multiple files to upload on a file input field, such as the following, then the request body will contain only one file associated with the input field.
Sounds like a bug! The fix seems reasonable to me, although I would prefer to use Vector instead of list. Could you write a test (and possibly a fix) for this? :)
Multiple file upload seems to not be handled correctly. If a user selects multiple files to upload on a file input field, such as the following, then the request body will contain only one file associated with the input field.
From a quick look at the code, maybe this part should use
HM.fromListWith (<>)
and aHashMap Text [UploadedFile]
?The text was updated successfully, but these errors were encountered: