Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gyteng committed Feb 24, 2020
1 parent f1ef8f5 commit 2d0c4e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -68,7 +68,7 @@ jobs:
- run:
name: Checkout libev
command: |
git clone https://github.com/shadowsocks/shadowsocks-libev.git ~/repo/docker/alpine/shadowsocks-libev && cd ~/repo/docker/alpine/shadowsocks-libev && git checkout 7763b961c5551d1c29ac358d2ea9d1d9ddfc74c7
git clone https://github.com/shadowsocks/shadowsocks-libev.git ~/repo/docker/alpine/shadowsocks-libev
- run:
name: Install submodule
command: |
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "shadowsocks-manager",
"version": "0.34.31",
"version": "0.34.32",
"description": "A shadowsocks manager tool for multi user and traffic control.",
"main": "server.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/webgui/index.js
Expand Up @@ -16,7 +16,7 @@ const sessionParser = session({
rolling: true,
resave: true,
saveUninitialized: true,
cookie: { secure: false, httpOnly: true, maxAge: 7 * 24 * 3600 * 1000 },
cookie: { secure: false, httpOnly: true, maxAge: 7 * 24 * 3600 * 1000, sameSite: 'none', },
store,
});
const bodyParser = require('body-parser');
Expand Down

0 comments on commit 2d0c4e9

Please sign in to comment.