fix(server): cookieが設定されないのを修正

This commit is contained in:
syuilo 2022-12-06 14:14:41 +09:00
parent 9cda400c80
commit 3b7c943440
4 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@ export class SigninService {
if (redirect) {
//#region Cookie
reply.cookies.set('igi', user.token!, {
reply.setCookie('igi', user.token!, {
path: '/',
// SEE: https://github.com/koajs/koa/issues/974
// When using a SSL proxy it should be configured to add the "X-Forwarded-Proto: https" header

View file

@ -122,7 +122,7 @@ export class DiscordServerService {
response_type: 'code',
};
reply.cookies.set('signin_with_discord_sid', sessid, {
reply.setCookie('signin_with_discord_sid', sessid, {
path: '/',
secure: this.config.url.startsWith('https'),
httpOnly: true,

View file

@ -120,7 +120,7 @@ export class GithubServerService {
state: uuid(),
};
reply.cookies.set('signin_with_github_sid', sessid, {
reply.setCookie('signin_with_github_sid', sessid, {
path: '/',
secure: this.config.url.startsWith('https'),
httpOnly: true,

View file

@ -112,7 +112,7 @@ export class TwitterServerService {
this.redisClient.set(sessid, JSON.stringify(twCtx));
reply.cookies.set('signin_with_twitter_sid', sessid, {
reply.setCookie('signin_with_twitter_sid', sessid, {
path: '/',
secure: this.config.url.startsWith('https'),
httpOnly: true,