Added missing semicolon

This commit is contained in:
Gabe
2018-07-23 22:32:08 -04:00
committed by GitHub
parent 81b472ccd1
commit 8ae2d67ec9

View File

@ -27,7 +27,7 @@ catch (error) {
// Error handling middleware, we delegate the handling to the centralized error handler
app.use(async (err, req, res, next) => {
const isOperationalError = await errorHandler.handleError(err)
const isOperationalError = await errorHandler.handleError(err);
if (!isOperationalError)
next(err);
});