From aaedac1a28909e73735e12ee2b88252ace8ecbe3 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 22 Mar 2024 17:01:30 +0200 Subject: [PATCH] better error message --- files/routes/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/wrappers.py b/files/routes/wrappers.py index 576da69a2..5e2e2dc48 100644 --- a/files/routes/wrappers.py +++ b/files/routes/wrappers.py @@ -112,7 +112,7 @@ def get_logged_in_user(): g.username = v.username if not v and SITE == 'rdrama.net' and request.headers.get("Cf-Ipcountry") == 'EG': - abort(403, "rdrama.net is only available to visitors from the United States!") + abort(403, "rdrama.net is only available to visitors from the United States and Europe!") g.is_api_or_xhr = bool((v and v.client) or request.headers.get("xhr"))