From c85be71f23d2740a400f3d851f2946aa1b03b264 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Fri, 7 Dec 2018 21:11:40 -0800 Subject: [PATCH] delet undefined --- src/configuration/emailconfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration/emailconfig.js b/src/configuration/emailconfig.js index cbe6cd59..99c48df7 100644 --- a/src/configuration/emailconfig.js +++ b/src/configuration/emailconfig.js @@ -51,7 +51,7 @@ class EmailConfig { const deleteAccount = config['delete-account']; this._delete = { isEnabled() { - return deleteAccount !== null && deleteAccount.enabled; + return deleteAccount != null && deleteAccount.enabled; }, getHTML() {