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

Commit 97b2432b authored by James Lin's avatar James Lin Committed by Automerger Merge Worker
Browse files

Merge "[UCE] Fix NPE in the RcsContactUceCapability" into sc-dev am: fb0faec3

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15127245

Change-Id: I0e8235780dc495d6e445969f5273b2e8f1564f06
parents 8a7c4098 fb0faec3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -331,7 +331,7 @@ public final class RcsContactUceCapability implements Parcelable {
            return null;
        }
        for (RcsContactPresenceTuple tuple : mPresenceTuples) {
            if (tuple.getServiceId().equals(serviceId)) {
            if (tuple.getServiceId() != null && tuple.getServiceId().equals(serviceId)) {
                return tuple;
            }
        }