Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Commit

Permalink
Fix casing in URL
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed Aug 15, 2016
1 parent 249dc7f commit 7e0fdb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HipChat.php
Expand Up @@ -26,7 +26,7 @@ class HipChat
public function __construct(HttpClient $http, $url, $token, $room)
{
$this->http = $http;
$this->url = rtrim($url ?: 'https://api.hipChat.com', '/');
$this->url = rtrim($url ?: 'https://api.hipchat.com', '/');
$this->token = $token;
$this->room = $room;
}
Expand Down

0 comments on commit 7e0fdb3

Please sign in to comment.