diff --git a/router/src/lib.rs b/router/src/lib.rs index 2b4c5d0e..fac4c14e 100644 --- a/router/src/lib.rs +++ b/router/src/lib.rs @@ -928,7 +928,7 @@ mod message_content_serde { "text" => Ok(content.text.unwrap_or_default()), "image_url" => { if let Some(url) = content.image_url { - Ok(format!("\n![]({})", url.url)) + Ok(format!("![]({})", url.url)) } else { Ok(String::new()) }