From 1604a1efd23e720c9d2883fd687d57e29cd56cd3 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Mon, 7 Aug 2023 08:25:29 -0300 Subject: [PATCH] fmt [skip ci] --- plugins/http/guest-js/index.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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,