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

Commit fb0faec3 authored by James Lin's avatar James Lin Committed by Android (Google) Code Review
Browse files

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

parents e099738d 78733ad4
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;
            }
        }