Skip to content

Commit

Permalink
Merge branch 'develop' into release/v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonAFA committed Jul 5, 2017
2 parents e3a732c + a62dffd commit fc515e9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,9 @@ public void onEvent(PKEvent event) {

private void sendErrorHandler(PKEvent event) {

PlayerEvent.Error errorEvent = (PlayerEvent.Error) event;
String errorMsg = "Player error occurred.";
PKError error = (PKError) event;
PKError error = errorEvent.error;
if (error.cause == null) {
errorHandler(errorMsg, event.eventType().toString());
return;
Expand Down

0 comments on commit fc515e9

Please sign in to comment.