Skip to content

Commit

Permalink
for real though
Browse files Browse the repository at this point in the history
  • Loading branch information
snollygolly committed Oct 28, 2018
1 parent 72b154c commit 0895d80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const serve = require("koa-static");
const mount = require("koa-mount");

// for passport support
const session = require("koa-session");
const session = require("koa-generic-session");
const bodyParser = require("koa-bodyparser");
const passport = require("koa-passport");

Expand All @@ -30,7 +30,7 @@ app.proxy = true;

// sessions
app.keys = [config.site.secret];
app.use(session(app));
app.use(session());

// body parser
app.use(bodyParser());
Expand Down

0 comments on commit 0895d80

Please sign in to comment.