fix: update sendHttpRequest to sendHttpRequestV1 for digest authentication

This commit is contained in:
Udhay-Adithya
2025-08-07 22:09:49 +05:30
parent a30ad769b7
commit fbbbcbae05

View File

@@ -111,9 +111,10 @@ Future<HttpRequestModel> handleAuth(
);
updatedHeaderEnabledList.add(true);
} else {
final httpResult = await sendHttpRequest(
final httpResult = await sendHttpRequestV1(
"digest-${Random.secure()}",
APIType.rest,
null,
httpRequestModel,
);
final httpResponse = httpResult.$1;