Commit 5ab619a8 by Future

日志补充

parent 2cc94c5e
...@@ -72,7 +72,6 @@ public class FriendEventSender { ...@@ -72,7 +72,6 @@ public class FriendEventSender {
} }
public void sendFriendApproveEventMsg(ImClient claimerClient, ImClient receiveClient, boolean isAgree, String rejectRemark) { public void sendFriendApproveEventMsg(ImClient claimerClient, ImClient receiveClient, boolean isAgree, String rejectRemark) {
FriendApproveEventDto approveDto = new FriendApproveEventDto(); FriendApproveEventDto approveDto = new FriendApproveEventDto();
approveDto.setSubCmd(EventResponseSubCmdEnum.FRIEND_APPROVE.getCode()); approveDto.setSubCmd(EventResponseSubCmdEnum.FRIEND_APPROVE.getCode());
approveDto.setAgree(isAgree); approveDto.setAgree(isAgree);
......
...@@ -206,9 +206,7 @@ public class ImFriendService extends BaseServiceImpl<ImFriendMapper, ImFriend> { ...@@ -206,9 +206,7 @@ public class ImFriendService extends BaseServiceImpl<ImFriendMapper, ImFriend> {
my.setRejectRemark(rejectRemark); my.setRejectRemark(rejectRemark);
} }
boolean ok2 = this.updateByKey(my); boolean ok2 = this.updateByKey(my);
friendEventSender.sendFriendApproveEventMsg(currentClient, friendClient, agree, rejectRemark); friendEventSender.sendFriendApproveEventMsg(currentClient, friendClient, agree, rejectRemark);
return ok1 || ok2; return ok1 || ok2;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment