Require the user to pick a display name

This commit is contained in:
Niels Andriesse
2019-10-11 13:37:56 +11:00
parent b425929da6
commit 48d282a864
8 changed files with 22 additions and 23 deletions

View File

@@ -119,7 +119,7 @@ public class AvatarImageView extends AppCompatImageView {
image = new GeneratedContactPhoto(name, R.drawable.ic_profile_default).asDrawable(context, fallbackColor.toAvatarColor(context));
} else {
image = new JazzIdenticonDrawable(w, h, recipient.getAddress().serialize());
image = new JazzIdenticonDrawable(w, h, recipient.getAddress().serialize().toLowerCase());
}
setImageDrawable(image);
}