fix(web): download from shared album link ()

* fix(web): download in album shared link

* chore: e2e test
This commit is contained in:
Jason Rasmussen 2024-02-19 23:39:49 -05:00 committed by GitHub
parent 7158706296
commit 7f5459f050
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 66 additions and 8 deletions
e2e/src

View file

@ -177,11 +177,11 @@ export const cliUtils = {
};
export const webUtils = {
setAuthCookies: async (context: BrowserContext, response: LoginResponseDto) =>
setAuthCookies: async (context: BrowserContext, accessToken: string) =>
await context.addCookies([
{
name: 'immich_access_token',
value: response.accessToken,
value: accessToken,
domain: '127.0.0.1',
path: '/',
expires: 1742402728,