diff options
author | Evhorizon <117596023+Evhorizon@users.noreply.github.com> | 2022-11-06 20:35:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-06 20:35:30 +0100 |
commit | 15177246158f0f42fa515efa1995a7e5f391435a (patch) | |
tree | 26122239e934b11a3e41ae469728f99049767a9d /searx/network | |
parent | 2dc5c0e1d61ea2d86f14af2cb6e1edfc4bfea20d (diff) | |
download | searxng-15177246158f0f42fa515efa1995a7e5f391435a.tar.gz searxng-15177246158f0f42fa515efa1995a7e5f391435a.zip |
Update network.py
Diffstat (limited to 'searx/network')
-rw-r--r-- | searx/network/network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/network/network.py b/searx/network/network.py index 87c077f23..6e1825dd9 100644 --- a/searx/network/network.py +++ b/searx/network/network.py @@ -173,7 +173,7 @@ class Network: ): continue return False - response = await client.get("https://check.torproject.org/api/ip", timeout=10) + response = await client.get("https://check.torproject.org/api/ip", timeout=60) if not response.json()["IsTor"]: result = False Network._TOR_CHECK_RESULT[proxies] = result |