1
0
Fork 0
forked from alemi/upub

fix: well it's not standard duhh

This commit is contained in:
əlemi 2024-03-27 01:53:41 +01:00
parent ad012bd2ee
commit b730598abe
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -98,7 +98,7 @@ async fn deliver(key: &PKey<Private>, 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}");