Update AutoService.php

This commit is contained in:
邹景立 2021-05-10 12:15:09 +08:00
parent 4d764d9dd3
commit ac3475075e

View File

@ -24,7 +24,7 @@ class AutoService extends Service
{
foreach ($this->app->db->name('WechatAuto')->where(['status' => 1])->order('time asc')->cursor() as $vo) {
$time = $this->parseTimeString($vo['time']);
$name = "延迟用户 {$openid} 推送 {$vo['code']} 客服消息";
$name = "{$openid} 推送 {$vo['code']} 客服消息";
QueueService::instance()->register($name, "xadmin:fansmsg {$openid} {$vo['code']}", $time);
}
}