From 34ca6cfbda7d89cb7daa08822eb30cc4635d97e5 Mon Sep 17 00:00:00 2001 From: Munif Tanjim Date: Tue, 17 Dec 2024 23:28:51 +0600 Subject: [PATCH] Fix regression in stremthru client (#397) --- streaming_providers/stremthru/client.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/streaming_providers/stremthru/client.py b/streaming_providers/stremthru/client.py index 0e3c993..a4749d6 100644 --- a/streaming_providers/stremthru/client.py +++ b/streaming_providers/stremthru/client.py @@ -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