From b730598abe9b367c1458c07a31c910dec0446c82 Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 27 Mar 2024 01:53:41 +0100 Subject: [PATCH] fix: well it's not standard duhh --- src/dispatcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatcher.rs b/src/dispatcher.rs index 58fd2d0e..c997bfe8 100644 --- a/src/dispatcher.rs +++ b/src/dispatcher.rs @@ -98,7 +98,7 @@ async fn deliver(key: &PKey, to: &str, from: &str, payload: serde_json: let payload = serde_json::to_string(&payload).unwrap(); let digest = format!("sha-256={}", base64::prelude::BASE64_URL_SAFE.encode(openssl::sha::sha256(payload.as_bytes()))); let host = Context::server(to); - let date = chrono::Utc::now().format("%D, %d %M %Y %H:%i:%s %T").to_string(); // what the fuck + let date = chrono::Utc::now().format("%a, %d %b %Y %H:%M:%S %Z").to_string(); // what the fuck let path = to.replace("https://", "").replace("http://", "").replace(&host, ""); tracing::info!("payload:\n{payload}\n{digest}");