Fix missing semicolon

This commit is contained in:
William Oldham 2024-10-16 14:40:26 +01:00 committed by William Oldham
parent 83dab9bb5d
commit 54dfed9346

View File

@ -347,7 +347,7 @@ router.post('/', async (request: express.Request, response: express.Response): P
await session.commitTransaction();
} catch (error: any) {
LOG_ERROR('[POST] /v1/register: ' + error);
if (error.stack) console.error(error.stack)
if (error.stack) console.error(error.stack);
await session.abortTransaction();