Skip to content

Commit 1f644eb

Browse files
committed
Fix base url call, closes #82
1 parent e0e6aae commit 1f644eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Github/HttpClient/HttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class HttpClient implements HttpClientInterface
4343
public function __construct(array $options = array(), ClientInterface $client = null)
4444
{
4545
$this->options = array_merge($this->options, $options);
46-
$client = $client ?: new GuzzleClient($options['base_url'], $this->options);
46+
$client = $client ?: new GuzzleClient($this->options['base_url'], $this->options);
4747
$this->client = $client;
4848

4949
$this->addListener('request.error', array(new ErrorListener($this->options), 'onRequestError'));

0 commit comments

Comments
 (0)