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

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

am 19a1d14b: am 38c007e8: am e53197e2: Merge "Add null check in...

am 19a1d14b: am 38c007e8: am e53197e2: Merge "Add null check in CallLogNotificationsService" into klp-dev

* commit '19a1d14b':
  Add null check in CallLogNotificationsService
parents 5fe94258 19a1d14b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -70,6 +70,10 @@ public class CallLogNotificationsService extends IntentService {

    @Override
    protected void onHandleIntent(Intent intent) {
        if (intent == null) {
            Log.d(TAG, "onHandleIntent: could not handle null intent");
            return;
        }
        if (ACTION_MARK_NEW_VOICEMAILS_AS_OLD.equals(intent.getAction())) {
            mCallLogQueryHandler.markNewVoicemailsAsOld();
        } else if (ACTION_UPDATE_NOTIFICATIONS.equals(intent.getAction())) {