Skip to content

Commit

Permalink
Fixed BroadcastException in PusherBroadcaster (#35290)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbl committed Nov 19, 2020
1 parent e90889d commit 23ba4ed
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -120,7 +120,7 @@ public function broadcast(array $channels, $event, array $payload = [])

throw new BroadcastException(
! empty($response['body'])
? sprintf('Pusher error: %s.', $response['status'])
? sprintf('Pusher error: %s.', $response['body'])
: 'Failed to connect to Pusher.'
);
}
Expand Down

0 comments on commit 23ba4ed

Please sign in to comment.