diff --git a/lib/www/server/lib/db/project/create.js b/lib/www/server/lib/db/project/create.js index 8f584d7..1143354 100644 --- a/lib/www/server/lib/db/project/create.js +++ b/lib/www/server/lib/db/project/create.js @@ -116,7 +116,7 @@ async function addProjectToList (projectDefinition) { `; const values = [ projectDefinition.id, projectDefinition.name, projectDefinition.schema, projectDefinition ]; try { - return await pool.query(sql, values); + return await pool.query(sql, values); } catch (err) { if (err.code == "23505") { if (err.constraint == "projects_name_key") {