fix(requests): return the cached fingerprint on second call

This commit is contained in:
Karim shoair
2026-01-20 20:28:13 +02:00
parent d90189e675
commit 5dbbd84b3d
+2
View File
@@ -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""