Browse Source

fix #23

silly syntax error fixed (missing paren)
beta
AJ ONeal 6 years ago
parent
commit
7a12ffaef0
  1. 2
      examples/production.js

2
examples/production.js

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

Loading…
Cancel
Save