hrukudah #15

Closed
bodqhrohro wants to merge 30 commits from hrukudah into master
Showing only changes of commit c64e0925f4 - Show all commits

View file

@ -352,7 +352,10 @@ public class Message extends AbstractEntity implements AvatarService.Avatarable
} }
public String replyId() { public String replyId() {
return conversation.getMode() == Conversation.MODE_MULTI || getRemoteMsgId() == null ? getServerMsgId() : getRemoteMsgId(); if (conversation.getMode() == Conversation.MODE_MULTI) return getServerMsgId();
final String remote = getRemoteMsgId();
if (remote == null && getStatus() > STATUS_RECEIVED) return getUuid();
return remote;
} }
public Message reply() { public Message reply() {