Commit ee443c91 authored by 周智鹏's avatar 周智鹏

增加发送者的id

parent 3df1499c
......@@ -120,14 +120,15 @@ class MessageHandler
* @param $title
* @throws HttpResponseException
*/
public function sendMarkDownText($receiverIds, $content,$title)
public function sendMarkDownText($receiverIds, $content, $title)
{
$application = $this->config->get('app_name');
if (!$application) {
throw new HttpResponseException("请设置应用名app_name");
}
$receiverIds = is_array($receiverIds) ? $receiverIds : [$receiverIds];
$this->messageService->SendMarkDownMessage($receiverIds, $application, 0, 0, [], $content,$title);
$sendUserId = Auth::id();
$this->messageService->SendMarkDownMessage($receiverIds, $application, 0, $sendUserId, [], $content, $title);
}
}
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