From 5357386e866f3e7da2e0c0618d24cf0cb1029fdc Mon Sep 17 00:00:00 2001 From: Malted Date: Sat, 10 Feb 2024 15:43:29 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20Debug=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/content.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/content.rs b/src/content/content.rs index 9854068..9e48ae5 100644 --- a/src/content/content.rs +++ b/src/content/content.rs @@ -19,7 +19,7 @@ fn img(malted_state: &State>, colour_scheme: &str) -> Redire let path = format!("/api/v1/snapshot?{query}&teamId={team_id}&keyId={key_id}"); let signature: Signature = SigningKey::from_pkcs8_pem(&private_key) - .unwrap() + .expect(&format!("FOR DEBUGGING: {}", private_key)) .sign(&path.as_bytes()); let signature: String = URL_SAFE.encode(signature.to_bytes());