Fix AuthorView using the wrong constant

This commit is contained in:
Torsten Grote
2021-11-19 15:11:23 -03:00
parent d6767a62b9
commit 7efc3ca78f

View File

@@ -93,7 +93,7 @@ public class AuthorView extends ConstraintLayout {
if (authorInfo.getStatus() == OURSELVES) {
authorName.setTypeface(authorNameTypeface, BOLD);
} else {
authorName.setTypeface(authorNameTypeface, NORMAL);
authorName.setTypeface(authorNameTypeface, Typeface.NORMAL);
}
invalidate();