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

Commit a888e0ee 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: Ib53c8a51cd1cb7179265bf37b190ebf481fa0365
parents abc29c4a 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;
            }
        }