update git command to ping me silently

This commit is contained in:
Elias Wendland
2026-07-23 17:34:51 +02:00
parent a22f5781c2
commit 41f8544a6a
+2 -2
View File
@@ -12,8 +12,8 @@ pub async fn git(ctx: Context<'_>) -> Result<(), Error> {
let msg = format!("Git repo: https://git.ewenlau.net/ewenlau/tg-dev-srv-bot\nIf you'd like to contribute, contact me to get an account.");
edit_response_message(&response, ctx, &msg, false).await?;
let msg = format!("Git repo: https://git.ewenlau.net/ewenlau/tg-dev-srv-bot\nIf you'd like to contribute, contact <@1389325880853270569> to get an account.");
edit_response_message(&response, ctx, &msg, true).await?;
trace_message(&msg, ctx.channel_id().get().to_string(), ctx.guild_id().unwrap().get().to_string()).await;
Ok(())