Skip to content

Commit

Permalink
Merge pull request #16493 from lukepolo/pusher-debug
Browse files Browse the repository at this point in the history
[5.3] Always debug Pusher
  • Loading branch information
taylorotwell authored Nov 22, 2016
2 parents e2b2298 + 51a1759 commit 25afd2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function broadcast(array $channels, $event, array $payload = [])
{
$socket = Arr::pull($payload, 'socket');

$response = $this->pusher->trigger($this->formatChannels($channels), $event, $payload, $socket);
$response = $this->pusher->trigger($this->formatChannels($channels), $event, $payload, $socket, true);

if ((is_array($response) && $response['status'] >= 200 && $response['status'] <= 299)
|| $response === true) {
Expand Down

0 comments on commit 25afd2f

Please sign in to comment.