From 3d20345239787f769aabdb16ffe463a76ceb6f95 Mon Sep 17 00:00:00 2001 From: kodjomoustapha <107993382+kodjodevf@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:18:41 +0100 Subject: [PATCH] fix --- lib/services/http/m_client.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/http/m_client.dart b/lib/services/http/m_client.dart index 126ed67..b936051 100644 --- a/lib/services/http/m_client.dart +++ b/lib/services/http/m_client.dart @@ -42,7 +42,7 @@ class MClient { Map? reqcopyWith, rhttp.ClientSettings? settings}) { return InterceptedClient.build( - client: httpClient(settings: settings), + client: httpClient(settings: settings, reqcopyWith: reqcopyWith), interceptors: [MCookieManager(reqcopyWith), LoggerInterceptor()]); }