Skip to content

Commit

Permalink
fix missing ,
Browse files Browse the repository at this point in the history
  • Loading branch information
osaajani committed Jan 30, 2021
1 parent b503510 commit 1c0ffc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/internals/Webhook.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function trigger(int $id_user, string $type, array $sms)
'data' => [
'webhook_timestamp' => $timestamp,
'webhook_type' => $webhook['type'],
'webhook_random_id' => $timestamp . '-' . bin2hex(openssl_random_pseudo_bytes(8))
'webhook_random_id' => $timestamp . '-' . bin2hex(openssl_random_pseudo_bytes(8)),
'id' => $sms['id'],
'at' => $sms['at'],
'text' => $sms['text'],
Expand Down

0 comments on commit 1c0ffc2

Please sign in to comment.