fix missing ,
This commit is contained in:
parent
b5035101b0
commit
1c0ffc246a
|
@ -130,7 +130,7 @@ class Webhook extends StandardController
|
||||||
'data' => [
|
'data' => [
|
||||||
'webhook_timestamp' => $timestamp,
|
'webhook_timestamp' => $timestamp,
|
||||||
'webhook_type' => $webhook['type'],
|
'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'],
|
'id' => $sms['id'],
|
||||||
'at' => $sms['at'],
|
'at' => $sms['at'],
|
||||||
'text' => $sms['text'],
|
'text' => $sms['text'],
|
||||||
|
|
Loading…
Reference in New Issue