aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel@gultsch.de>2015-05-15 11:51:20 +0200
committerDaniel Gultsch <daniel@gultsch.de>2015-05-17 12:32:27 +0200
commit3cbd336a51ba352dc92d3fae525882b7db161ca8 (patch)
tree915f60c17e960ea4f1542985084ff346639097a0
parent136aa85daad00364c978b7c707bec29687e2aba7 (diff)
fixed read/unread markers
-rw-r--r--src/main/java/eu/siacs/conversations/parser/MessageParser.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/main/java/eu/siacs/conversations/parser/MessageParser.java b/src/main/java/eu/siacs/conversations/parser/MessageParser.java
index 69f58898..339aeb7f 100644
--- a/src/main/java/eu/siacs/conversations/parser/MessageParser.java
+++ b/src/main/java/eu/siacs/conversations/parser/MessageParser.java
@@ -181,7 +181,6 @@ public class MessageParser extends AbstractParser implements
final MessagePacket packet;
Long timestamp = null;
final boolean isForwarded;
- boolean carbon = false; //live carbons or mam-sub
MessageArchiveService.Query query = null;
String serverMsgId = null;
if (original.fromServer(account)) {
@@ -192,15 +191,14 @@ public class MessageParser extends AbstractParser implements
packet = f != null ? f.first : original;
timestamp = f != null ? f.second : null;
isForwarded = f != null;
- carbon = original.hasChild("received", "urn:xmpp:carbons:2") || original.hasChild("received", "urn:xmpp:carbons:2");
- Element fin = packet.findChild("fin", "urn:xmpp:mam:0");
+ Element fin = original.findChild("fin", "urn:xmpp:mam:0");
if (fin != null) {
mXmppConnectionService.getMessageArchiveService().processFin(fin);
return;
}
- final Element result = packet.findChild("result","urn:xmpp:mam:0");
+ final Element result = original.findChild("result","urn:xmpp:mam:0");
if (result != null) {
query = mXmppConnectionService.getMessageArchiveService().findQuery(result.getAttribute("queryid"));
if (query != null) {
@@ -307,14 +305,15 @@ public class MessageParser extends AbstractParser implements
query.incrementMessageCount();
}
conversation.add(message);
- if (carbon || status == Message.STATUS_RECEIVED) {
- mXmppConnectionService.markRead(conversation);
- account.activateGracePeriod();
- } else if (!isForwarded) {
- message.markUnread();
+ if (serverMsgId == null) {
+ if (status == Message.STATUS_SEND) {
+ mXmppConnectionService.markRead(conversation);
+ account.activateGracePeriod();
+ } else {
+ message.markUnread();
+ }
}
-
if (mXmppConnectionService.confirmMessages() && remoteMsgId != null && !isForwarded) {
if (packet.hasChild("markable", "urn:xmpp:chat-markers:0")) {
MessagePacket receipt = mXmppConnectionService