Skip to content

Commit 4ac40c8

Browse files
Fix another issue
1 parent faa0456 commit 4ac40c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-reports/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020

2121
async def refresh_persistent_cookies() -> None:
22-
for org_id, (_, auth_cookie) in persistent_organisations.items():
22+
for org_id, (origonal_cookie, auth_cookie) in persistent_organisations.items():
2323
persistent_organisations[org_id] = (
24-
auth_cookie,
24+
origonal_cookie,
2525
await check_or_refresh_cookie(org_id, auth_cookie)
2626
)
2727

0 commit comments

Comments
 (0)