Fix tests
This commit is contained in:
parent
ee3f3e1743
commit
5258b215d4
@ -17,6 +17,7 @@
|
|||||||
namespace Aviat\AnimeClient\Command;
|
namespace Aviat\AnimeClient\Command;
|
||||||
|
|
||||||
use function Aviat\AnimeClient\loadToml;
|
use function Aviat\AnimeClient\loadToml;
|
||||||
|
use function Aviat\AnimeClient\loadTomlFile;
|
||||||
|
|
||||||
use Aura\Session\SessionFactory;
|
use Aura\Session\SessionFactory;
|
||||||
use Aviat\AnimeClient\Util;
|
use Aviat\AnimeClient\Util;
|
||||||
|
@ -88,7 +88,7 @@ class UrlGenerator extends RoutingBase {
|
|||||||
}
|
}
|
||||||
$path = implode('/', $path_segments);
|
$path = implode('/', $path_segments);
|
||||||
|
|
||||||
$scheme = ($_SERVER['HTTPS'] === 'on') ? 'https:' : '';
|
$scheme = (isset($_SERVER['HTTPS'])) ? 'https:' : '';
|
||||||
|
|
||||||
return "{$scheme}//{$this->host}/{$path}";
|
return "{$scheme}//{$this->host}/{$path}";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user