diff --git a/app/login.go b/app/login.go index c3816f0fd5..255595d7cb 100644 --- a/app/login.go +++ b/app/login.go @@ -273,14 +273,13 @@ func (a *App) AttachCloudSessionCookie(c *request.Context, w http.ResponseWriter } cookie := &http.Cookie{ - Name: model.SessionCookieCloudUrl, - Value: workspaceName, - Path: subpath, - MaxAge: maxAge, - Expires: expiresAt, - HttpOnly: true, - Domain: domain, - Secure: secure, + Name: model.SessionCookieCloudUrl, + Value: workspaceName, + Path: subpath, + MaxAge: maxAge, + Expires: expiresAt, + Domain: domain, + Secure: secure, } http.SetCookie(w, cookie)