@@ -166,7 +166,7 @@ impl std::convert::TryFrom<hyper::header::HeaderValue> for header::IntoHeaderVal
166166 match hdr_values. to_str ( ) {
167167 std:: result:: Result :: Ok ( hdr_values) => {
168168 let hdr_values : std:: vec:: Vec < MultipartRelatedRequest > = hdr_values
169- . split ( ',' )
169+ . split ( ", " )
170170 . filter_map ( |hdr_value| match hdr_value. trim ( ) {
171171 "" => std:: option:: Option :: None ,
172172 hdr_value => std:: option:: Option :: Some ( {
@@ -338,7 +338,7 @@ impl std::convert::TryFrom<hyper::header::HeaderValue> for header::IntoHeaderVal
338338 match hdr_values. to_str ( ) {
339339 std:: result:: Result :: Ok ( hdr_values) => {
340340 let hdr_values : std:: vec:: Vec < MultipartRequestObjectField > = hdr_values
341- . split ( ',' )
341+ . split ( ", " )
342342 . filter_map ( |hdr_value| match hdr_value. trim ( ) {
343343 "" => std:: option:: Option :: None ,
344344 hdr_value => std:: option:: Option :: Some ( {
@@ -504,7 +504,7 @@ impl std::convert::TryFrom<hyper::header::HeaderValue> for header::IntoHeaderVal
504504 match hdr_values. to_str ( ) {
505505 std:: result:: Result :: Ok ( hdr_values) => {
506506 let hdr_values : std:: vec:: Vec < MultipleIdenticalMimeTypesPostRequest > = hdr_values
507- . split ( ',' )
507+ . split ( ", " )
508508 . filter_map ( |hdr_value| match hdr_value. trim ( ) {
509509 "" => std:: option:: Option :: None ,
510510 hdr_value => std:: option:: Option :: Some ( {
0 commit comments