fix(emergency): 宣教推送IM消息发送人改为当前登录用户,不再硬编码administrator
This commit is contained in:
+1
-1
@@ -149,7 +149,7 @@ public class FirstAidPushServiceImpl implements IFirstAidPushService {
|
|||||||
|
|
||||||
ImGroupMsgTextReqDO im = new ImGroupMsgTextReqDO();
|
ImGroupMsgTextReqDO im = new ImGroupMsgTextReqDO();
|
||||||
im.setGroupId(order.getSessionId());
|
im.setGroupId(order.getSessionId());
|
||||||
im.setFromUserId("administrator");
|
im.setFromUserId(loginUser != null ? loginUser.getId() : "administrator");
|
||||||
im.setContent(JSONObject.toJSON(sendIm).toString());
|
im.setContent(JSONObject.toJSON(sendIm).toString());
|
||||||
|
|
||||||
imHelloApi.sendGroupMsg(im);
|
imHelloApi.sendGroupMsg(im);
|
||||||
|
|||||||
Reference in New Issue
Block a user