Skip to content

Commit

Permalink
callback bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iMohammadd committed May 30, 2020
1 parent 250fc5b commit c43a04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/callback.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function process() {
->where('token', $data['token'])
->firstOrFail();
// check status from jeeb.io server
$status = Status::check($data['token']);
$status = Status::check($data['token'])->json();

// get stateId from status
$stateId = $status['result']['stateId'];
Expand Down

0 comments on commit c43a04d

Please sign in to comment.