Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
Fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneRifle authored Sep 14, 2018
1 parent 14d53a6 commit 45a9f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ app.route('/assert', (req, res) => {
} else {
// Embed a session cookie or pass back some Authorization bearer token
const FOUR_HOURS = 4 * 60 * 60 * 1000
const jwt = client.createJWT(userName, FOUR_HOURS)
const jwt = client.createJWT({ userName }, FOUR_HOURS)
res.cookie('connect.sid', jwt)
}
res.redirect(relayState)
Expand Down

0 comments on commit 45a9f20

Please sign in to comment.