fixed uusable links

This commit is contained in:
CHIEFSOFT\ameye
2024-09-20 16:59:27 -04:00
parent 3cd3e8c75f
commit 6e87d4762b
+6 -2
View File
@@ -9,7 +9,7 @@ class Home extends BaseController
return view('welcome_message');
}
public function promoIndex($promo,$promoOwner=''):string{
public function promoIndex($promo,$promoOwner=''){
// if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
// echo 'This is a server using Windows!';
@@ -23,7 +23,11 @@ class Home extends BaseController
$out["promo"] = $promo;
$out["promo_owner"] = $promoOwner;
// var_dump($out);
if ( $out["status_message"] != "VALID_LINK_FOUND"){
return redirect()->to($out["user_server_name"]);
}
$out["task"] = $this->APIcall('POST', $this->wrenchApiServer(). 'tasks',$in)["result_list"];
return view('welcome_message', $out);
}