chore: Remove unwraps from process_handlers

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2025-09-10 09:24:27 +10:00
parent 83dc773b10
commit 463c5e6f3b
4 changed files with 23 additions and 17 deletions

View File

@ -134,7 +134,7 @@ async fn recieve_handshake_logic(app: &AppHandle, path: String) -> Result<(), Re
private: response_struct.private,
cert: response_struct.certificate,
client_id: response_struct.id,
web_token: Some(web_token), // gets created later
web_token: Some(web_token),
});
Ok(())