Skip to content

Commit

Permalink
Merge pull request #28 from jtojnar/pusher-fix
Browse files Browse the repository at this point in the history
Fix Pusher when using non-default cluster
  • Loading branch information
gpascualg authored Apr 25, 2017
2 parents 2a1b7cf + ffbf19a commit db880c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Commands/PostChatHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ protected function getPusher()
return new Pusher(
$this->settings->get('flarum-pusher.app_key'),
$this->settings->get('flarum-pusher.app_secret'),
$this->settings->get('flarum-pusher.app_id')
$this->settings->get('flarum-pusher.app_id'),
['cluster' => $this->settings->get('flarum-pusher.app_cluster')]
);
}
}

0 comments on commit db880c5

Please sign in to comment.