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

Commit d2bfade8 authored by Romain Guy's avatar Romain Guy Committed by Android Code Review
Browse files

Merge "The password in the APN settings is shown instead of stars"

parents 68b80698 414ab76f
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -458,7 +458,11 @@ public class ApnEditor extends PreferenceActivity
    public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
        Preference pref = findPreference(key);
        if (pref != null) {
            if (pref.equals(mPassword)){
                pref.setSummary(starify(sharedPreferences.getString(key, "")));
            } else {
                pref.setSummary(checkNull(sharedPreferences.getString(key, "")));
            }
        }
    }
}