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);
}