seven 2 周之前
父节点
当前提交
28f7700aff
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      app/Services/BetService.php

+ 4 - 3
app/Services/BetService.php

@@ -1040,7 +1040,8 @@ class BetService extends BaseService
                     $keyboard[] = [
                     $keyboard[] = [
                         ['text' => "开奖历史", 'callback_data' => "showLotteryHistory@@" . $issue_no]
                         ['text' => "开奖历史", 'callback_data' => "showLotteryHistory@@" . $issue_no]
                     ];
                     ];
-                    SendTelegramMessageJob::dispatch($v['member_id'],$text2,$keyboard);
+                    self::sendMessage($v['member_id'],$text2,$keyboard);
+                    // SendTelegramMessageJob::dispatch($v['member_id'],$text2,$keyboard);
                 }
                 }
 
 
         }
         }
@@ -1050,8 +1051,8 @@ class BetService extends BaseService
 
 
 
 
         // 群通知
         // 群通知
-        // self::bettingGroupNotice($text, $inlineButton, '');
-        SendTelegramGroupMessageJob::dispatch($text,$inlineButton,'');
+        self::bettingGroupNotice($text, $inlineButton, '');
+        // SendTelegramGroupMessageJob::dispatch($text,$inlineButton,'');
         
         
     }
     }