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

Commit e7a87a7b authored by Nathan Harold's avatar Nathan Harold Committed by Automerger Merge Worker
Browse files

Skip sanitizing location info for Null Barring CID am: b4180288

Change-Id: I797eab4212793d1feb5fa4723bc3f2b9a93962ef
parents 15b304a1 b4180288
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -324,6 +324,9 @@ public final class BarringInfo implements Parcelable {
    /** @hide */
    @SystemApi
    public @NonNull BarringInfo createLocationInfoSanitizedCopy() {
        // The only thing that would need sanitizing is the CellIdentity
        if (mCellIdentity == null) return this;

        return new BarringInfo(mCellIdentity.sanitizeLocationInfo(), mBarringServiceInfos);
    }