From e35f34eaf5f02005009290a323831c87d44c1880 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 22 Aug 2024 06:30:19 -0700 Subject: [PATCH] Fix compile --- src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 27e04cb9..08727ea0 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -2040,7 +2040,7 @@ async fn handle_plugin_event( Some(id) => get_environment(app_handle, id.as_str()).await.ok(), }; - let resp = create_default_http_response(app_handle, req.http_request.id.as_str()) + let resp = create_default_http_response(&w, req.http_request.id.as_str()) .await .unwrap();