Skip to content

Commit

Permalink
Send correct value for 'test-mode'
Browse files Browse the repository at this point in the history
  • Loading branch information
ttrig committed Sep 25, 2019
1 parent c0aa338 commit 603dd98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function call(string $function, array $data = []): array
'client' => $this->config['client'],
'serverdata' => $this->getServerData(),
'time' => microtime(true),
'test' => $this->config['test'] ? 1 : 0,
'test' => $this->config['test'] ? '1' : '0',
'language' => app()->getLocale(),
],
'data' => $data,
Expand Down

0 comments on commit 603dd98

Please sign in to comment.