Skip to content

Commit c808722

Browse files
committed
Fix headers
1 parent 4dd2b05 commit c808722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/CurlDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ private function getRequestHeaders(): array
166166
case 'user-agent':
167167
break;
168168
default:
169-
$headers[$name] = implode(', ', $values);
169+
$headers[] = $name . ':' . implode(', ', $values);
170170
}
171171
}
172172

0 commit comments

Comments
 (0)