send_received muc messages will mark a conversation a read
This commit is contained in:
parent
53e8964dc1
commit
6b794eca2c
|
@ -320,7 +320,7 @@ public class MessageParser extends AbstractParser implements
|
||||||
}
|
}
|
||||||
conversation.add(message);
|
conversation.add(message);
|
||||||
if (serverMsgId == null) {
|
if (serverMsgId == null) {
|
||||||
if (status == Message.STATUS_SEND) {
|
if (status == Message.STATUS_SEND || status == Message.STATUS_SEND_RECEIVED) {
|
||||||
mXmppConnectionService.markRead(conversation);
|
mXmppConnectionService.markRead(conversation);
|
||||||
account.activateGracePeriod();
|
account.activateGracePeriod();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue