From 870855d99c0bff4445580c6f98e590f2c499c281 Mon Sep 17 00:00:00 2001 From: lkddi Date: Thu, 2 Apr 2026 15:16:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(wechat):=20=E5=8E=BB=E6=8E=89=E5=A4=9A?= =?UTF-8?q?=E4=BD=99=E9=87=8D=E5=A4=8D=E7=9A=84=E6=A0=87=E9=A2=98=E6=8B=BC?= =?UTF-8?q?=E6=8E=A5=E4=BB=A5=E4=BF=9D=E6=8C=81=E6=96=87=E6=A1=88=E7=B2=BE?= =?UTF-8?q?=E7=AE=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/WechatBot/WechatNotificationService.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/Services/WechatBot/WechatNotificationService.php b/app/Services/WechatBot/WechatNotificationService.php index 973af08..9d4540b 100644 --- a/app/Services/WechatBot/WechatNotificationService.php +++ b/app/Services/WechatBot/WechatNotificationService.php @@ -68,9 +68,7 @@ class WechatNotificationService if (! $groupWxid) { return; } - - $message = "🎰 【百家乐开奖】\n{$historyText}"; - SendWechatBotMessage::dispatch($groupWxid, $message); + SendWechatBotMessage::dispatch($groupWxid, $historyText); } /** @@ -87,8 +85,7 @@ class WechatNotificationService return; } - $message = "🎲 【彩票开奖】\n{$historyText}"; - SendWechatBotMessage::dispatch($groupWxid, $message); + SendWechatBotMessage::dispatch($groupWxid, $historyText); } /**