Skip to content

Commit

Permalink
message_id missing in synq gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Mosoti committed Sep 19, 2018
1 parent 5b059f6 commit 32a4e6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Gateways/Synq.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public function send($recipient, $message, $params = null)
$d = substr($response, 0, 2);

$data = [
'is_success' => $d === 'OK'
'is_success' => $d === 'OK',
'message_id' => $params['message_id']
];

return (object)$data;
Expand Down

0 comments on commit 32a4e6c

Please sign in to comment.