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[] = [
                         ['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,'');
         
     }