Skip to content

Commit

Permalink
Fix basApiUrl (#14)
Browse files Browse the repository at this point in the history
Rollbar expects the baseApiUrl to be without the `item/` at the end.
  • Loading branch information
rokob authored and baibaratsky committed Feb 26, 2018
1 parent 5decf41 commit 5363d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rollbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class Rollbar extends Object
{
public $accessToken;
public $baseApiUrl = 'https://api.rollbar.com/api/1/item/';
public $baseApiUrl = 'https://api.rollbar.com/api/1/';
public $batchSize;
public $batched;
public $branch;
Expand Down

0 comments on commit 5363d5e

Please sign in to comment.