diff --git a/plugins/http/src/commands.rs b/plugins/http/src/commands.rs index b6113c29..1c9e3f0e 100644 --- a/plugins/http/src/commands.rs +++ b/plugins/http/src/commands.rs @@ -423,6 +423,9 @@ pub async fn fetch_send( )); } + let mut resources_table = webview.resources_table(); + let rid = resources_table.add(ReqwestResponse(res)); + Ok(FetchResponse { status: status.as_u16(), status_text: status.canonical_reason().unwrap_or_default().to_string(),