1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Fix empty check

This commit is contained in:
Jake Barnby 2022-11-25 10:29:22 +13:00
parent bb01a6d817
commit de38fed306
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -92,7 +92,7 @@ App::post('/v1/projects')
throw new Exception(Exception::PROJECT_RESERVED_PROJECT, "'console' is a reserved project.");
}
if (\empty($region)) {
if (empty($region)) {
$region = App::getEnv('_APP_REGION', 'default');
}