Skip to content

Commit 4371268

Browse files
committed
fix for form data
1 parent 3ee87e3 commit 4371268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/dart/lib/client.dart.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class Client {
8181
try {
8282

8383
if(headers['content-type'] == 'multipart/form-data') {
84-
return await http.request(path, data: FormData.fromMap(params), options: options);
84+
return await http.request(path, data: FormData.fromMap(params,ListFormat.multiCompatible), options: options);
8585
}
8686

8787
if (method == HttpMethod.get) {

0 commit comments

Comments
 (0)