Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
etorth committed Nov 22, 2024
1 parent 3d9e803 commit 427c335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/gui/friendchatboard/friendchatboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1256,6 +1256,7 @@ void FriendChatBoard::addMessage(std::optional<uint64_t> localPendingID, const S
if(localPendingID.has_value()){
if(auto p = chatPage->chat.canvas.hasDescendant(localPendingID.value())){
dynamic_cast<ChatItem *>(p)->pending = false;
dynamic_cast<ChatItem *>(p)->msgID = sdCM.seq.value().id;
}
}
else{
Expand Down
1 change: 1 addition & 0 deletions server/src/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,7 @@ void Player::operateNet(uint8_t nType, const uint8_t *pData, size_t nDataLen, ui
_support_cm(CM_QUERYPLAYERNAME );
_support_cm(CM_QUERYPLAYERWLDESP );
_support_cm(CM_QUERYCHATPEERLIST );
_support_cm(CM_QUERYCHATMESSAGE );
_support_cm(CM_QUERYSELLITEMLIST );
_support_cm(CM_QUERYUIDBUFF );
_support_cm(CM_REQUESTADDEXP );
Expand Down

0 comments on commit 427c335

Please sign in to comment.