Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 3e7fbb9

Browse files
committed
fix email/password based authorization
1 parent c6d6928 commit 3e7fbb9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/authorize.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ function emailAuth(authEmail, authPassword, cache, cb) {
2323
'/users/login',
2424
{ email: authEmail, password: authPassword },
2525
noHeaders,
26+
null,
2627
function clientCb(clientErr, clientResp) {
2728
if (clientErr) return cb(clientErr, clientResp);
2829
return cb(null, clientResp.id);

0 commit comments

Comments
 (0)