Browse Source

update: fix

tokumeikoi 3 years ago
parent
commit
30b3587771
2 changed files with 3 additions and 3 deletions
  1. 1 1
      app/Http/Controllers/Admin/StatController.php
  2. 2 2
      app/Jobs/StatServerJob.php

+ 1 - 1
app/Http/Controllers/Admin/StatController.php

@@ -95,7 +95,7 @@ class StatController extends Controller
             'trojan' => ServerTrojan::where('parent_id', null)->get()->toArray()
         ];
         $timestamp = strtotime('-1 day', strtotime(date('Y-m-d')));
-        $statistics = StatServerV2ray::select([
+        $statistics = StatServer::select([
                 'server_id',
                 'server_type',
                 'u',

+ 2 - 2
app/Jobs/StatServerJob.php

@@ -36,7 +36,7 @@ class StatServerJob implements ShouldQueue
     public function handle()
     {
         $statistic = $this->statistic;
-        $data = StatServerV2ray::where('record_at', $statistic['record_at'])
+        $data = StatServer::where('record_at', $statistic['record_at'])
             ->where('server_id', $statistic['server_id'])
             ->first();
         if ($data) {
@@ -46,7 +46,7 @@ class StatServerJob implements ShouldQueue
                 abort(500, '节点统计数据更新失败');
             }
         } else {
-            if (!StatServerV2ray::create($statistic)) {
+            if (!StatServer::create($statistic)) {
                 abort(500, '节点统计数据创建失败');
             }
         }