mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-27 19:22:15 -05:00
don't take stanza-id into account when deduping muc pms
This commit is contained in:
parent
27690865a6
commit
223d50c1a0
@ -378,7 +378,7 @@ public class Message extends AbstractEntity {
|
||||
}
|
||||
|
||||
public boolean similar(Message message) {
|
||||
if (this.serverMsgId != null && message.getServerMsgId() != null) {
|
||||
if (type != TYPE_PRIVATE && this.serverMsgId != null && message.getServerMsgId() != null) {
|
||||
return this.serverMsgId.equals(message.getServerMsgId());
|
||||
} else if (this.body == null || this.counterpart == null) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user