## Problem The submit path in `codeforces.py` guarded `cookie_cache.write_text` on the presence of a `JSESSIONID` cookie. Codeforces does not use `JSESSIONID`, so the cookie file was never written after submit, breaking the fast-path on subsequent submits. ## Solution Replace the name-specific guard with a non-empty check (`if browser_cookies:`), matching the unconditional save already used in the login path. Closes #301. |
||
|---|---|---|
| .. | ||
| __init__.py | ||
| atcoder.py | ||
| base.py | ||
| codechef.py | ||
| codeforces.py | ||
| cses.py | ||
| kattis.py | ||
| language_ids.py | ||
| models.py | ||
| timeouts.py | ||
| usaco.py | ||