Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-WJ committed Jan 25, 2024
1 parent d72cab8 commit 5df0633
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ public void insertGroupMessageToLocalStorage(OnBase<String> base, Message messag
* @param clientMsgIDs 消息ids
* @param callBack
*/
@Deprecated
public void markMessagesAsReadByMsgID(String conversationID, List<String> clientMsgIDs, OnBase<String> callBack) {
Open_im_sdk.markMessagesAsReadByMsgID(BaseImpl.stringBase(callBack), ParamsUtil.buildOperationID(), conversationID, JsonUtil.toString(clientMsgIDs));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public class AtTextElem {
* 自己是否被@了
*/
private boolean isAtSelf;
/**
* 引用消息
*/
private Message quoteMessage;


public String getText() {
Expand All @@ -44,4 +48,12 @@ public boolean isAtSelf() {
public void setAtSelf(boolean atSelf) {
isAtSelf = atSelf;
}

public Message getQuoteMessage() {
return quoteMessage;
}

public void setQuoteMessage(Message quoteMessage) {
this.quoteMessage = quoteMessage;
}
}

0 comments on commit 5df0633

Please sign in to comment.