-
-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(form-data): handling array items #1336
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
Looks like a formatting issue. Can you run |
I see that the approved changes sets the data as a JSON string when So that the end result looks something like this for the form data key: |
Looks like there is conflicts and an open question from @Ultre00 |
I think it's a personal opinion kind of thing. Surely |
@Ultre00 do you want to review the latest changes? |
Isn't this change only related to formdata anyway? I don't see how setting I don't think there is anything else to review. Only Main is merged into this branch. |
@Ultre00 @BijanRegmi where are we with this PR? Is there more work to be done? |
It's ready to be merged |
Status
READY
Description
Fixes: #845
Formdata only supports either string or blob types. So items of an array should be converted to string before adding them to the form.
Todos