From 2f5c3b6cf36d7f55f114aa4f0888f99e27b3d12d Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Fri, 7 May 2021 07:56:58 -0400 Subject: [PATCH] Fix Verification filename --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 25ba3d3..8803917 100644 --- a/commands.go +++ b/commands.go @@ -164,7 +164,7 @@ func RetrieveVerification(b BotCommand) bool { return false } msg := fmt.Sprintf("```%+v\nJoined: %+v\n```", user.User.Username, user.JoinedAt) - s.ChannelFileSendWithMessage(m.ChannelID, msg, fmt.Sprintf("%+v Verification", discordId), verificationImage) + s.ChannelFileSendWithMessage(m.ChannelID, msg, matches[0], verificationImage) return true }