Skip to content

Commit

Permalink
don't check intent nullity
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorz committed Jul 17, 2018
1 parent 76d8cff commit a97bd71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ private void handleOpenPageIntent(Intent intent) {
}

private void launchZendeskMyTickets() {
if (isFinishing() || getIntent() == null) {
if (isFinishing()) {
return;
}

Expand Down

0 comments on commit a97bd71

Please sign in to comment.