We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa0456 commit 4ac40c8Copy full SHA for 4ac40c8
css-reports/app.py
@@ -19,9 +19,9 @@
19
20
21
async def refresh_persistent_cookies() -> None:
22
- for org_id, (_, auth_cookie) in persistent_organisations.items():
+ for org_id, (origonal_cookie, auth_cookie) in persistent_organisations.items():
23
persistent_organisations[org_id] = (
24
- auth_cookie,
+ origonal_cookie,
25
await check_or_refresh_cookie(org_id, auth_cookie)
26
)
27
0 commit comments