Skip to content

Commit

Permalink
Ensure value is returned
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon committed Jan 31, 2024
1 parent 0745e47 commit 68b1bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Servers/Reverb/Http/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ protected function createRequest(string $message, Connection $connection): ?Requ
$this->close($connection, 413, 'Payload too large.');
}

return $request;
return $request ?? null;
}
}

0 comments on commit 68b1bd0

Please sign in to comment.