Skip to content

Commit

Permalink
remove $ prefix, not all properties requires that
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlandsman committed Jun 7, 2013
1 parent 2f07db5 commit f369556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Otwell/Mixel/Tracker.php
Expand Up @@ -61,7 +61,7 @@ public function track($event, array $properties = array(), $token = null)
public function engage($type, array $properties, $distinctId, $clientIp, $token = null)
{
$payload = array(
'$'.$type => $properties,
$type => $properties,
'$token' => $token ?: $this->token,
'$distinct_id' => $distinctId,
'$ip' => $clientIp
Expand Down

0 comments on commit f369556

Please sign in to comment.