Skip to content

Commit

Permalink
Merge pull request #21 from DenisJunio/patch-1
Browse files Browse the repository at this point in the history
Compatibility with Laravel Nova
  • Loading branch information
mlanin authored Jul 7, 2020
2 parents 00a28a4 + 31f19e6 commit ab412ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Debugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ protected function updateResponse(Request $request, Response $response)
if ($this->needToUpdateResponse($response)) {
$data = $this->getResponseData($response);

if ($data === false) {
if ($data === false || !is_object($data)) {
return;
}

Expand Down

0 comments on commit ab412ad

Please sign in to comment.