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

Commit 4939e95c authored by Pengquan Meng's avatar Pengquan Meng
Browse files

Fixed the spn from IccRecords

This change trim the spn from IccRecords.

Bug: 132311210
Test: build & current test
Change-Id: I144ca55705273081c00a5abfd7872c8b1cbb9b01
parent f079b098
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -696,8 +696,8 @@ public abstract class IccRecords extends Handler implements IccConstants {

    protected void setServiceProviderName(String spn) {
        if (!TextUtils.equals(mSpn, spn)) {
            mSpn = spn != null ? spn.trim() : null;
            mSpnUpdatedRegistrants.notifyRegistrants();
            mSpn = spn;
        }
    }