summaryrefslogtreecommitdiffstats
path: root/g4f/requests/raise_for_status.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-11-19 15:57:16 +0100
committerGitHub <noreply@github.com>2024-11-19 15:57:16 +0100
commit1563946aa2757baad48ff05732356f78e82dd4e6 (patch)
tree0481d391ff397c7d4be93a7224c3717e03ae2b3f /g4f/requests/raise_for_status.py
parentMerge pull request #2378 from hlohaus/info (diff)
parentAdd show log option to gui (diff)
downloadgpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar
gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.gz
gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.bz2
gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.lz
gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.xz
gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.tar.zst
gpt4free-1563946aa2757baad48ff05732356f78e82dd4e6.zip
Diffstat (limited to 'g4f/requests/raise_for_status.py')
-rw-r--r--g4f/requests/raise_for_status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/requests/raise_for_status.py b/g4f/requests/raise_for_status.py
index 1699d9a4..fe262f34 100644
--- a/g4f/requests/raise_for_status.py
+++ b/g4f/requests/raise_for_status.py
@@ -11,7 +11,7 @@ class CloudflareError(ResponseStatusError):
...
def is_cloudflare(text: str) -> bool:
- if "<title>Attention Required! | Cloudflare</title>" in text:
+ if "<title>Attention Required! | Cloudflare</title>" in text or 'id="cf-cloudflare-status"' in text:
return True
return '<div id="cf-please-wait">' in text or "<title>Just a moment...</title>" in text