diff --git a/plugins/http/guest-js/index.ts b/plugins/http/guest-js/index.ts index 023552f0..e991076f 100644 --- a/plugins/http/guest-js/index.ts +++ b/plugins/http/guest-js/index.ts @@ -104,9 +104,12 @@ export async function fetch( rid, }); - const body = await window.__TAURI_INVOKE__("plugin:http|fetch_read_body", { - rid, - }); + const body = await window.__TAURI_INVOKE__( + "plugin:http|fetch_read_body", + { + rid, + }, + ); const res = new Response(Uint8Array.from(body), { headers,