瀏覽代碼

[Fix] [CRITICAL] Fix new installations (#790)

Dennis 2 年之前
父節點
當前提交
51d340d95b
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      app/Http/Controllers/HomeController.php

+ 4 - 2
app/Http/Controllers/HomeController.php

@@ -25,6 +25,8 @@ class HomeController extends Controller
         $this->middleware('auth');
     }
 
+    /*
+    * TODO: This is commented due to the fact the market is a bad dependency, will be changed later.
     public function callHome()
     {
         if (Storage::exists('callHome')) {
@@ -34,7 +36,7 @@ class HomeController extends Controller
             'id' => Hash::make(URL::current()),
         ]);
         Storage::put('callHome', 'This is only used to count the installations of cpgg.');
-    }
+    }*/
 
     /**
      * @description Get the Background Color for the Days-Left-Box in HomeView
@@ -105,7 +107,7 @@ class HomeController extends Controller
             $unit = $daysLeft < 1 ? ($hoursLeft < 1 ? null : __('hours')) : __('days');
         }
 
-        $this->callhome();
+        //$this->callhome(); TODO: Same as the function
 
         // RETURN ALL VALUES
         return view('home')->with([