Quick patch for CORS check while in init state

This commit is contained in:
Ro 2021-08-02 12:53:36 -07:00
commit 3c3f2a0881

View file

@ -4,6 +4,8 @@ class handleCors
{
public function __construct()
{
//look to see if settings file exists. kinda important
if (file_exists("../config/settings.json")) {
//check settings to see if external api access is allowed
$config = new Settings();
$settings = $config->getSettings();
@ -47,5 +49,8 @@ class handleCors
//value doesn't exist, so whatevs
//echo "API ACCESS VALUE NOT PRESENT";
}
} else {
//init state, so chill
}
}
}