Use secure cookie

This commit is contained in:
ekzyis 2023-11-21 02:55:33 +01:00
parent aae0d3765a
commit 0caa517cd5
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ const AnonAccount = ({ selected, onClick }) => {
<AnonIcon <AnonIcon
className='fill-muted' className='fill-muted'
width='135' height='135' style={{ cursor: 'pointer' }} onClick={async () => { width='135' height='135' style={{ cursor: 'pointer' }} onClick={async () => {
document.cookie = 'multi_auth.user-id=anonymous' document.cookie = 'multi_auth.user-id=anonymous; Secure'
// order is important to prevent flashes of no session // order is important to prevent flashes of no session
setIsAnon(true) setIsAnon(true)
await refreshMe() await refreshMe()
@ -97,7 +97,7 @@ const Account = ({ account, className }) => {
> >
<Image <Image
width='135' height='135' src={src} style={{ cursor: 'pointer' }} onClick={async () => { width='135' height='135' src={src} style={{ cursor: 'pointer' }} onClick={async () => {
document.cookie = `multi_auth.user-id=${account.id}` document.cookie = `multi_auth.user-id=${account.id}; Secure`
await refreshMe() await refreshMe()
// order is important to prevent flashes of inconsistent data in switch account dialog // order is important to prevent flashes of inconsistent data in switch account dialog
setIsAnon(false) setIsAnon(false)