Skip to content

Commit 53bac62

Browse files
committed
fix(authentication) Closes #251
1 parent 76e46c8 commit 53bac62

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"express-session": "^1.15.1",
117117
"feathers": "^2.0.3",
118118
"feathers-authentication": "^1.0.2",
119-
"feathers-authentication-client": "^0.1.10",
119+
"feathers-authentication-client": "^0.3.2",
120120
"feathers-authentication-jwt": "^0.3.1",
121121
"feathers-authentication-local": "^0.3.3",
122122
"feathers-authentication-oauth1": "^0.2.3",

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function createApp(req) {
2929
const app = configureApp(rest(host('/api')).superagent(superagent, {
3030
headers: {
3131
Cookie: req.get('cookie'),
32-
authorization: req.header('authorization')
32+
authorization: req.header('authorization') || ''
3333
}
3434
}));
3535

0 commit comments

Comments
 (0)