Skip to content

Commit

Permalink
Add formatting to customer ID to match CS console
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoobs authored Nov 13, 2020
1 parent ead0aaa commit b831c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crowdstrike_model.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function process($data)

$this->sensor_id = str_replace("-", "", strtolower($plist[agent_info]['agentID'])); # do some formatting so that output matchines CS console
$this->sensor_version = $plist[agent_info]['version'];
$this->customer_id = $plist[agent_info]['customerID'];
$this->customer_id = str_replace("-", "", $plist[agent_info]['customerID']); # do some formatting so that output matchines CS console
$this->sensor_installguard = $plist[agent_info]['sensor_installguard'];
$this->save();
}
Expand Down

0 comments on commit b831c75

Please sign in to comment.