diff --git a/app/src/main/java/org/thoughtcrime/securesms/stories/viewer/reply/group/StoryGroupReplyItem.kt b/app/src/main/java/org/thoughtcrime/securesms/stories/viewer/reply/group/StoryGroupReplyItem.kt index 96dad886ac..0246ddd467 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/stories/viewer/reply/group/StoryGroupReplyItem.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/stories/viewer/reply/group/StoryGroupReplyItem.kt @@ -256,7 +256,6 @@ object StoryGroupReplyItem { reaction.visible = true bubble.visibility = View.INVISIBLE itemView.padding(bottom = 0) - body.setText(R.string.StoryGroupReactionReplyItem__reacted_to_the_story) body.updateLayoutParams { marginEnd = 0 } @@ -269,6 +268,7 @@ object StoryGroupReplyItem { override fun bind(model: ReactionModel) { super.bind(model) reaction.setImageEmoji(model.reaction.emoji) + body.setText(if (model.replyBody.sender.isSelf) R.string.StoryGroupReactionReplyItem__you_reacted_to_the_story else R.string.StoryGroupReactionReplyItem__someone_reacted_to_the_story) } } diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 7b5fb6149a..a3e31a8203 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -5720,8 +5720,10 @@ No replies yet You can\'t reply to this story because you\'re no longer a member of this group. - - Reacted to the story + + Reacted to the story + + Reacted to the story Views