diff options
author | Valentin Popov <info@valentineus.link> | 2019-05-06 04:45:35 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-05-06 04:47:03 +0300 |
commit | eb4b9b69f862df8ba23cafc8cd5e4a887baa02f0 (patch) | |
tree | e112a43f17173e02eada16b8d85ea4c4adc9cb4d /classes/task/notify.php | |
parent | bde135499d1fe0ca67a1f50fea79848cbdb370ea (diff) | |
download | local_webhooks-eb4b9b69f862df8ba23cafc8cd5e4a887baa02f0.tar.xz local_webhooks-eb4b9b69f862df8ba23cafc8cd5e4a887baa02f0.zip |
Added worked a class observer
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'classes/task/notify.php')
-rw-r--r-- | classes/task/notify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/task/notify.php b/classes/task/notify.php index faa68a9..bd11f24 100644 --- a/classes/task/notify.php +++ b/classes/task/notify.php @@ -79,7 +79,7 @@ final class notify extends adhoc_task { public function post(record $service, array $data) { $curl = new curl(); $curl->setHeader(['Content-Type: ' . $service->header]); - $curl->post($service->point, $data); + $curl->post($service->point, json_encode($data)); if (defined('PHPUNIT_TEST') && PHPUNIT_TEST) { $this->debug = array_merge($this->debug ?? [], [ |