mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-25 22:36:06 +03:00
fix double urlencoding
This commit is contained in:
parent
44a30f7dd1
commit
3a3f98029f
@ -116,7 +116,7 @@ abstract class HttpApi
|
||||
protected function httpGet(string $path, array $parameters = [], array $requestHeaders = []): ResponseInterface
|
||||
{
|
||||
if (count($parameters) > 0) {
|
||||
$path .= '?'.http_build_query($parameters);
|
||||
$path .= '?'.urldecode(http_build_query($parameters));
|
||||
}
|
||||
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user