Always capitalize placeholder icons

This commit is contained in:
nielsandriesse 2020-09-11 11:58:15 +10:00
parent 49d08d1af0
commit 166c0735af

View File

@ -30,7 +30,7 @@ object AvatarPlaceholderGenerator {
val colorSecondary = changeColorHueBy(colorPrimary, 12f)
val labelText = when {
!TextUtils.isEmpty(displayName) -> extractLabel(displayName!!)
!TextUtils.isEmpty(displayName) -> extractLabel(displayName!!.capitalize())
!TextUtils.isEmpty(hashString) -> extractLabel(hashString)
else -> EMPTY_LABEL
}