diff options
-rw-r--r-- | src/audio.rs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/audio.rs b/src/audio.rs index 64ee223..a67f3da 100644 --- a/src/audio.rs +++ b/src/audio.rs @@ -28,13 +28,20 @@ pub async fn tts(text: String, filename: String) -> Result<(), String> { // Send POST request let client = reqwest::Client::new(); - let response = client + let response; + + match client .post(url) .header(AUTHORIZATION, api_key) .json(&body) .send() .await - .unwrap(); + { + Ok(r) => response = r, + Err(e) => { + return Err(format!("Error creating new audio: {}", e)); + } + }; // Check for successful response if response.status().is_success() { |