Skip to content

Commit 3337f7b

Browse files
committed
Remove unused options to session strategy.
1 parent 50cc57a commit 3337f7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/authenticator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function Authenticator() {
2929
*/
3030
Authenticator.prototype.init = function() {
3131
this.framework(require('./framework/connect')());
32-
this.use(new SessionStrategy({ key: this._key }, this.deserializeUser.bind(this)));
32+
this.use(new SessionStrategy(this.deserializeUser.bind(this)));
3333
this._sm = new SessionManager({ key: this._key }, this.serializeUser.bind(this));
3434
};
3535

0 commit comments

Comments
 (0)