summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-03-20 19:26:00 +0200
committerGitHub <noreply@github.com>2019-03-20 19:26:00 +0200
commitaf2fb5f3991578c5667926225caa3b86c6a109a4 (patch)
tree536a6f9f2541f00d8a428f4eceff8b6ceba4954f
parente97656555029cb58be775e4be65843b634725d6f (diff)
parent7a6b4adcc11d05b2cb4f798643b82e4aae0c0b26 (diff)
downloadwekan-af2fb5f3991578c5667926225caa3b86c6a109a4.tar.gz
wekan-af2fb5f3991578c5667926225caa3b86c6a109a4.tar.bz2
wekan-af2fb5f3991578c5667926225caa3b86c6a109a4.zip
Merge pull request #2272 from justinr1234/patch-1
Don't swallow email errors
-rw-r--r--server/rulesHelper.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/rulesHelper.js b/server/rulesHelper.js
index 163bd41e..453c586d 100644
--- a/server/rulesHelper.js
+++ b/server/rulesHelper.js
@@ -78,6 +78,8 @@ RulesHelper = {
emailMsg,
});
} catch (e) {
+ // eslint-disable-next-line no-console
+ console.error(e);
return;
}
}