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

Commit 220bd7ef authored by Andrew Lee's avatar Andrew Lee
Browse files

Null protect invocation of getContentResolver.

Bug: 22118779
Change-Id: I9a11c2fc05f8a6f418bc0e6daa55dfb61707bd6a
parent ea5ffbf1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -339,7 +339,7 @@ public class VoicemailPlaybackPresenter
    }

    private boolean queryHasContent(Uri voicemailUri) {
        if (voicemailUri == null) {
        if (voicemailUri == null || mContext == null) {
            return false;
        }