From 342ab83abf2f5a8e2954310501315a7a97edd712 Mon Sep 17 00:00:00 2001 From: Troels Date: Thu, 11 Sep 2025 13:53:43 +0200 Subject: [PATCH] Response type correctly mapped on CapacitorHttp plugin call --- core/native-bridge.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/native-bridge.ts b/core/native-bridge.ts index 2d260ff49..a09d8c866 100644 --- a/core/native-bridge.ts +++ b/core/native-bridge.ts @@ -740,6 +740,7 @@ const initBridge = (w: any): void => { .nativePromise('CapacitorHttp', 'request', { url: this._url, method: this._method, + responseType: this.responseType, data: data !== null ? data : undefined, headers: { ...headers,