From ef8df3c44ddad9d1e6c3be57e8e8540258990531 Mon Sep 17 00:00:00 2001 From: Simon Beginn Date: Fri, 24 Jan 2020 22:43:28 +0100 Subject: [PATCH] Removed fake api servers address from the login notification --- www/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/index.php b/www/index.php index 29c4228..9712a7b 100755 --- a/www/index.php +++ b/www/index.php @@ -11,7 +11,7 @@ if(isset($_GET['path'])) { //Any notification/[version] will be answered here if(preg_match('/notification.*/', $_GET['path'])) { $result = new stdClass; - $result->message = 'Fake API endpoint active and reachable under ' . $_SERVER['HTTP_HOST'] . ' (contacted at ' . date('r') . ').'; + $result->message = 'Fake API endpoint active and reachable (contacted at ' . date('r') . ').'; $result->vpn = false; //Idk $result->www = false; //Idk } else if(isset($body->license) && preg_match('/subscription.*/', $_GET['path'])) {