1
0
Fork 1

No you may not reply to yourself

(cherry picked from commit 5e1502bb47854d7771586deee3663810be3e2240)
This commit is contained in:
Stephen Paul Weber 2025-01-08 21:57:16 +01:00 committed by Arne
parent e3d2dec1f7
commit 0f609eeb31

View file

@ -2072,6 +2072,10 @@ public class ConversationFragment extends XmppFragment
}
public void setupReply(Message message) {
if (message != null) {
final var correcting = conversation.getCorrectingMessage();
if (correcting != null && correcting.getUuid().equals(message.getUuid())) return;
}
conversation.setReplyTo(message);
if (message == null) {
binding.contextPreview.setVisibility(View.GONE);