|
|
@@ -289,7 +289,7 @@ class IssueService extends BaseService
|
|
|
SendTelegramGroupMessageJob::dispatch($text, $buttons, $image, true);
|
|
|
}
|
|
|
//暂时注释
|
|
|
- // $recordImage = self::lotteryImage($info->issue_no);
|
|
|
+ $recordImage = self::lotteryImage($info->issue_no);
|
|
|
if ($recordImage) {
|
|
|
// self::bettingGroupNotice('', [], url($recordImage));
|
|
|
SendTelegramGroupMessageJob::dispatch('', [], url($recordImage), false);
|
|
|
@@ -898,7 +898,7 @@ class IssueService extends BaseService
|
|
|
// 封盘倒数
|
|
|
public static function syncCountdownIssue()
|
|
|
{
|
|
|
- $now_date = date('Y-m-d H:i:s', time() + 50); // 提前50秒
|
|
|
+ $now_date = date('Y-m-d H:i:s', time() + 60); // 提前60秒
|
|
|
$info = self::model()::where('status', self::model()::STATUS_BETTING)->orderBy('end_time', 'asc')->first();
|
|
|
if ($info) {
|
|
|
if ($info['end_time'] < $now_date) {
|