diff options
| author | Bnyro <bnyro@tutanota.com> | 2026-07-15 18:06:49 +0200 |
|---|---|---|
| committer | Bnyro <bnyro@tutanota.com> | 2026-07-16 23:31:59 +0200 |
| commit | 9f9c00819eb210a67a33fed67b303f604168ad00 (patch) | |
| tree | cd3125da437cade798794b0cf51dabca00ae56ae | |
| parent | b72a87676f119c691e7721b22b5fdc1b32c427e3 (diff) | |
[fix] tiger: remember auth cookie for 2 months, not 1 day
| -rw-r--r-- | searx/engines/tiger.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/tiger.py b/searx/engines/tiger.py index c6d14b611..bf89d62ff 100644 --- a/searx/engines/tiger.py +++ b/searx/engines/tiger.py @@ -117,7 +117,7 @@ def _obtain_session_code() -> str: if not code: raise SearxEngineAPIException("failed to obtain session code") - CACHE.set("session", code, expire=60 * 24 * 60) # cookie is valid for two months + CACHE.set("session", code, expire=60 * 24 * 60 * 60) # cookie is valid for two months return code |
