ignore RTP session logs when looking for LMC. fixes #3843

This commit is contained in:
Daniel Gultsch 2020-07-26 13:46:01 +02:00
parent 8b26c60f00
commit 9bec186292
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ public class Message extends AbstractEntity implements AvatarService.Avatarable
} }
public boolean isEditable() { public boolean isEditable() {
return getStatus() != STATUS_RECEIVED && !isCarbon(); return status != STATUS_RECEIVED && !isCarbon() && type != Message.TYPE_RTP_SESSION;
} }
public boolean mergeable(final Message message) { public boolean mergeable(final Message message) {