Skip to content

Commit faa0456

Browse files
Fix refresh logic
1 parent 18c821c commit faa0456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-reports/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

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

0 commit comments

Comments
 (0)