From 2a19d2d0d80bfe87f0dea9c3892a4ce9e02cb2c2 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 19 Aug 2024 09:52:36 +0200 Subject: [PATCH] Display dota matches with the large embed --- src/services/brooch/mod.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/services/brooch/mod.rs b/src/services/brooch/mod.rs index 84baf730..b85e4195 100644 --- a/src/services/brooch/mod.rs +++ b/src/services/brooch/mod.rs @@ -711,11 +711,6 @@ impl BroochService { lines.push("".to_string()); } - lines.push(format!( - "Partita {}", - match_id, - )); - Ok((match_id, Some(lines.join("\n")))) } @@ -728,8 +723,8 @@ impl BroochService { .link_preview_options(LinkPreviewOptions { is_disabled: false, url: Some(format!("https://stratz.com/matches/{}", match_id)), - prefer_small_media: true, - prefer_large_media: false, + prefer_small_media: false, + prefer_large_media: true, show_above_text: false, }) .await