From c41ff1f9a3eb7ffdf4ed3cc85ae40d0338ce632d Mon Sep 17 00:00:00 2001 From: douglas Date: Wed, 5 Sep 2018 18:45:25 +1000 Subject: [PATCH] #30 - Trying to fix build in circleci --- backend/src/main/utils/PromiseUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/utils/PromiseUtils.js b/backend/src/main/utils/PromiseUtils.js index 2772cf9e..9b3a66f5 100644 --- a/backend/src/main/utils/PromiseUtils.js +++ b/backend/src/main/utils/PromiseUtils.js @@ -8,7 +8,7 @@ class PromiseUtils { }) .catch(error => { return Promise.resolve(finallyFn()) - .then(() => resolve(reject(error))); + .then(() => reject(error)); }); }); }