1
0
Fork 0
mirror of synced 2024-06-15 17:24:48 +12:00

Update app/controllers/api/functions.php

Co-authored-by: Jake Barnby <jakeb994@gmail.com>
This commit is contained in:
Matej Bačo 2022-08-30 09:28:01 +02:00 committed by GitHub
parent 3e2a7e2941
commit ce5c8d6817
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1341,7 +1341,7 @@ App::post('/v1/functions/:functionId/variables')
try {
$variable = $dbForProject->createDocument('variables', $variable);
} catch (DuplicateException $th) {
throw new Exception(Exception::VARIABLE_ALREADY_EXISTS, 'Variable key already used.');
throw new Exception(Exception::VARIABLE_ALREADY_EXISTS);
}
$dbForProject->deleteCachedDocument('functions', $function->getId());