Skip to content

Commit

Permalink
🔊 Debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Feb 10, 2024
1 parent 36725db commit 5357386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/content.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn img(malted_state: &State<RwLock<MaltedState>>, 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());

Expand Down

0 comments on commit 5357386

Please sign in to comment.