From 5dbbd84b3dc4c0fa0085c0818333221cab50cc3f Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Tue, 20 Jan 2026 20:28:13 +0200 Subject: [PATCH] fix(requests): return the cached fingerprint on second call --- scrapling/spiders/request.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scrapling/spiders/request.py b/scrapling/spiders/request.py index 977e8e8..3351100 100644 --- a/scrapling/spiders/request.py +++ b/scrapling/spiders/request.py @@ -71,6 +71,8 @@ class Request: Caches the result in self._fp after first computation. """ + if self._fp is not None: + return self._fp post_data = self._session_kwargs.get("data", {}) body = b""