From 6dc658d60fa74169f63fb99d1a4fefdaf228fe1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 10 May 2021 12:22:39 +0800 Subject: [PATCH] Update AutoService.php --- app/wechat/service/AutoService.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/wechat/service/AutoService.php b/app/wechat/service/AutoService.php index 8f7328160..a4ab6c77f 100644 --- a/app/wechat/service/AutoService.php +++ b/app/wechat/service/AutoService.php @@ -23,9 +23,8 @@ class AutoService extends Service public function register(string $openid) { foreach ($this->app->db->name('WechatAuto')->where(['status' => 1])->order('time asc')->cursor() as $vo) { - $time = $this->parseTimeString($vo['time']); - $name = "向 {$openid} 推送 {$vo['code']} 客服消息"; - QueueService::instance()->register($name, "xadmin:fansmsg {$openid} {$vo['code']}", $time); + [$name, $time] = ["推送客服消息 {$vo['code']}#{$openid}", $this->parseTimeString($vo['time'])]; + QueueService::instance()->register($name, "xadmin:fansmsg {$openid} {$vo['code']}", $time, [], 1); } }