From 5747e1dbd776bb6c2fec63488487543f3950a1e0 Mon Sep 17 00:00:00 2001 From: Rouji Date: Mon, 30 Aug 2021 12:21:56 +0200 Subject: [PATCH] unfuck code golf --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 414c9b5..4d323a0 100755 --- a/index.php +++ b/index.php @@ -19,7 +19,7 @@ class CONFIG public static function SITE_URL() : string { - $proto = $_SERVER['HTTPS'] ?? true ? 'http' : 'https'; + $proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' ? 'https' : 'http'; return "$proto://{$_SERVER['HTTP_HOST']}/"; } };