Calling Logging fixing

This commit is contained in:
Alex Emmet 2025-11-13 23:13:55 +00:00
commit 3cb2f0ec5e
12 changed files with 118 additions and 112 deletions

View file

@ -132,7 +132,7 @@ pub async fn get_public_key(user_id: Uuid) -> Option<String> {
.ok()?;
let body = res.text().await.ok()?;
let mut cv = CommunicationValue::from_json(&body);
let cv = CommunicationValue::from_json(&body);
if cv.comm_type != CommunicationType::message_send {
return None;