silly syntax error fixed (missing paren)
这个提交包含在:
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);
}