fix reply id
This commit is contained in:
parent
847ef66216
commit
a1e354fa72
|
@ -344,7 +344,7 @@ public class Message extends AbstractEntity implements AvatarService.Avatarable
|
|||
}
|
||||
|
||||
public String replyId() {
|
||||
return conversation.getMode() == Conversation.MODE_MULTI ? getServerMsgId() : getRemoteMsgId();
|
||||
return conversation.getMode() == Conversation.MODE_MULTI || getRemoteMsgId() == null ? getServerMsgId() : getRemoteMsgId();
|
||||
}
|
||||
|
||||
public Message reply() {
|
||||
|
|
Loading…
Reference in a new issue