Fix regression in stremthru client (#397)

This commit is contained in:
Munif Tanjim
2024-12-17 23:28:51 +06:00
committed by GitHub
parent 0ccd59e15c
commit 34ca6cfbda
+6 -1
View File
@@ -92,7 +92,12 @@ class StremThru(DebridClient):
params = params or {}
full_url = urljoin(self.BASE_URL, url)
response = await super()._make_request(
method=method, url=full_url, params=params, **kwargs
method=method,
url=full_url,
params=params,
is_http_response=is_http_response,
is_expected_to_fail=is_expected_to_fail,
**kwargs,
)
if is_http_response or is_expected_to_fail:
return response