Fix private story listing My Story as a recipient.

This commit is contained in:
Alex Hart 2024-06-05 12:50:00 -03:00 committed by Cody Henthorne
parent 1a103106a5
commit 7acb2bef3d

View file

@ -82,12 +82,7 @@ object PrivateStoryItem {
}
avatar.setRecipient(model.recipient)
if (model.recipient.isSelf) {
name.setText(R.string.MyStorySettingsFragment__my_story)
} else {
name.text = model.recipient.getDisplayName(context)
}
name.text = model.recipient.getDisplayName(context)
}
}