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

Commit 74047258 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixed crash when UUID string is empty"

parents 1b86b3fa 03c3abba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1527,7 +1527,7 @@ public class SubscriptionInfo implements Parcelable {
         */
        @NonNull
        public Builder setGroupUuid(@Nullable String groupUuid) {
            mGroupUuid = groupUuid == null ? null : ParcelUuid.fromString(groupUuid);
            mGroupUuid = TextUtils.isEmpty(groupUuid) ? null : ParcelUuid.fromString(groupUuid);
            return this;
        }