From ef0a38f8a368d3c2c4e496d309d53e92d6ca7210 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Sat, 10 Jun 2023 12:59:56 -0700 Subject: [PATCH] Remove timestamp hash from embed images --- src/commands/challenge.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/challenge.rs b/src/commands/challenge.rs index 0c19009..e4facb5 100644 --- a/src/commands/challenge.rs +++ b/src/commands/challenge.rs @@ -248,7 +248,7 @@ pub async fn submit(ctx: Context<'_>, submission: serenity::Attachment) -> Resul .name(username) .url(format!("https://discord.com/users/{}", author.id)); e.set_author(embed_author); - e.image(format!("https://{domain}/{n}/{image}#{timestamp}")); + e.image(format!("https://{domain}/{n}/{image}")); if let Some(accent_color) = accent_color { e.color(accent_color); }