silly syntax error fixed (missing paren)
This commit is contained in:
AJ ONeal 2018-11-05 07:01:01 +00:00
父節點 da89714865
當前提交 7a12ffaef0
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -84,7 +84,7 @@ function fooCheckDb(domains, cb) {
});
if (!passCheck) {
cb(new Error('domain not allowed');
cb(new Error('domain not allowed'));
} else {
cb(null, userAgrees, userEmail);
}