Browse Source

Update AutoService.php

邹景立 3 years ago
parent
commit
ac3475075e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/wechat/service/AutoService.php

+ 1 - 1
app/wechat/service/AutoService.php

@@ -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);
         }
     }