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

Commit 57686be2 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Fix NPE in onHandleIntent"

parents c4f37cd6 94907618
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -258,6 +258,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();