From e60b6a665f7e4cf96ff9a47516a1a6c13713d50c Mon Sep 17 00:00:00 2001 From: niftylettuce Date: Mon, 2 Sep 2019 14:50:54 -0500 Subject: [PATCH] fix: fixed redisStore issue --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 79a4c31..c7c5238 100644 --- a/index.js +++ b/index.js @@ -254,7 +254,7 @@ class Web { app.keys = this.config.sessionKeys; app.use( session({ - store: redisStore, + store: redisStore({ client }), key: this.config.cookiesKey, cookie: this.config.cookies })