We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e46c8 commit 53bac62Copy full SHA for 53bac62
2 files changed
package.json
@@ -116,7 +116,7 @@
116
"express-session": "^1.15.1",
117
"feathers": "^2.0.3",
118
"feathers-authentication": "^1.0.2",
119
- "feathers-authentication-client": "^0.1.10",
+ "feathers-authentication-client": "^0.3.2",
120
"feathers-authentication-jwt": "^0.3.1",
121
"feathers-authentication-local": "^0.3.3",
122
"feathers-authentication-oauth1": "^0.2.3",
src/app.js
@@ -29,7 +29,7 @@ export function createApp(req) {
29
const app = configureApp(rest(host('/api')).superagent(superagent, {
30
headers: {
31
Cookie: req.get('cookie'),
32
- authorization: req.header('authorization')
+ authorization: req.header('authorization') || ''
33
}
34
}));
35
0 commit comments