Don't capitalize category names

(cherry picked from commit 962d8e5fd2)
This commit is contained in:
arkon
2020-07-10 09:57:29 -04:00
committed by Jobobby04
parent 15b23e35cd
commit 04749a8fce
@@ -24,8 +24,7 @@ class CategoryHolder(view: View, val adapter: CategoryAdapter) : BaseFlexibleVie
* @param category The category to bind.
*/
fun bind(category: Category) {
// Set capitalized title.
title.text = category.name.capitalize()
title.text = category.name
}
/**