From 83951140e6b644316ce4d93575f3e34d19c8be55 Mon Sep 17 00:00:00 2001 From: Shautvast Date: Wed, 8 Oct 2025 17:04:08 +0200 Subject: [PATCH] call back again --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 9570b8b..ae6683a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -123,8 +123,8 @@ async fn report(message: &str) -> axum::response::Result<(), ErrorResponse> { let form = reqwest::multipart::Form::new() .text("token", PUSHOVER_API_KEY.to_string()) .text("user", PUSHOVER_USER_ID.to_string()) - .text("message", message.to_string()); - // .text("url", CALL_HOME.to_string()); + .text("message", message.to_string()) + .text("url", CALL_HOME.to_string()); let client = reqwest::Client::new(); let _ = client