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

Commit 9fbff5a3 authored by Sanket Padawe's avatar Sanket Padawe Committed by Android Git Automerger
Browse files

am 59dc8d1d: SIM settings display name changes

* commit '59dc8d1d':
  SIM settings display name changes
parents 246273ae 59dc8d1d
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -428,12 +428,12 @@ public class SimSettings extends RestrictedSettingsFragment implements Indexable
        public void update() {
            final Resources res = getResources();

            if(mSubInfoRecord.displayName.length() == 0) {
            if (mSubInfoRecord != null) {
                if(TextUtils.isEmpty(mSubInfoRecord.displayName)) {
                    setTitle(getCarrierName());
                } else {
                    setTitle(mSubInfoRecord.displayName);
                }
            if (mSubInfoRecord != null) {
                setSummary(mSubInfoRecord.number.toString());
                setEnabled(true);
            } else {