From d370a9b85d83773efb15a127dd5a3f23964b0754 Mon Sep 17 00:00:00 2001 From: Florian Briand Date: Mon, 22 Jul 2024 13:24:11 +0200 Subject: [PATCH] chore: Remove commented out code for GET method in build_axum_request --- tauri/src-tauri/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tauri/src-tauri/src/main.rs b/tauri/src-tauri/src/main.rs index 5f75e1b..fc4ca4c 100644 --- a/tauri/src-tauri/src/main.rs +++ b/tauri/src-tauri/src/main.rs @@ -27,7 +27,6 @@ async fn route_fallback(uri: axum::http::Uri) -> (axum::http::StatusCode, String fn build_axum_request(uri: Uri) -> axum::http::Request { axum::http::Request::builder() - // .method("GET") .uri(uri.to_string()) .body(axum::body::Body::empty()) .unwrap()