Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0506e98 authored by Jay Shrauner's avatar Jay Shrauner Committed by Android Git Automerger
Browse files

am ada9796b: am 4829b548: Merge "Fix NPE in onHandleIntent" into lmp-mr1-dev

* commit 'ada9796b':
  Fix NPE in onHandleIntent
parents a3f68e1e ada9796b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -182,6 +182,10 @@ public class ContactSaveService extends IntentService {

    @Override
    protected void onHandleIntent(Intent intent) {
        if (intent == null) {
            Log.d(TAG, "onHandleIntent: could not handle null intent");
            return;
        }
        // Call an appropriate method. If we're sure it affects how incoming phone calls are
        // handled, then notify the fact to in-call screen.
        String action = intent.getAction();