mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 11:25:13 +01:00
Show full client ID
This commit is contained in:
@@ -439,7 +439,14 @@ public class FragmentOptionsPrivacy extends FragmentBase implements SharedPrefer
|
||||
|
||||
// Initialize
|
||||
FragmentDialogTheme.setBackground(getContext(), view, false);
|
||||
tvClientId.setText(getString(R.string.app_name) + " " + BuildConfig.VERSION_NAME);
|
||||
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (String value : EmailService.getId(getContext()).values()) {
|
||||
if (sb.length() > 0)
|
||||
sb.append(' ');
|
||||
sb.append(value);
|
||||
}
|
||||
tvClientId.setText(sb);
|
||||
|
||||
PreferenceManager.getDefaultSharedPreferences(getContext()).registerOnSharedPreferenceChangeListener(this);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user