From 971fbd9cbfc4d169a323988709b9eece89e90c34 Mon Sep 17 00:00:00 2001 From: Igor Popov Date: Sat, 1 May 2021 18:01:24 +0300 Subject: [PATCH] Fake tt_webid_v2 --- bot/api/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/api/base.py b/bot/api/base.py index bb87b0b..f0efe02 100644 --- a/bot/api/base.py +++ b/bot/api/base.py @@ -26,7 +26,7 @@ def headers(self) -> dict[str, Any]: @property def cookies(self) -> dict[str, Any]: return { - 'tt_webid_v2': str(uuid.uuid4()) + 'tt_webid_v2': '1234567890123456789' } @property