Skip to content

Commit

Permalink
chore: minor cosmetic change (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak authored Sep 9, 2022
1 parent 5c85d24 commit addfbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fastifySession.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function fastifySession (fastify, options, next) {
return
}
const decryptedSessionId = unsignedCookie.value
options.store.get(decryptedSessionId, (err, session) => {
sessionStore.get(decryptedSessionId, (err, session) => {
if (err) {
if (err.code === 'ENOENT') {
request.session = new Session(
Expand Down

0 comments on commit addfbb6

Please sign in to comment.