Skip to content

Commit

Permalink
Bugfix: fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Nov 6, 2018
1 parent 19ecf46 commit 2b072d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SensorsAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ protected function _do_request($data) {
$http_response_header = curl_exec($ch);
if (!$http_response_header) {
throw new SensorsAnalyticsDebugException(
"Failed to connect to SensorsAnalytics. [error='" + curl_error($ch) + "']");
"Failed to connect to SensorsAnalytics. [error='".curl_error($ch)."']");
}

$result = array(
Expand Down

0 comments on commit 2b072d6

Please sign in to comment.