Fix Verification filename

This commit is contained in:
2021-05-07 07:56:58 -04:00
parent 70672fd5fd
commit 2f5c3b6cf3

View File

@ -164,7 +164,7 @@ func RetrieveVerification(b BotCommand) bool {
return false return false
} }
msg := fmt.Sprintf("```%+v\nJoined: %+v\n```", user.User.Username, user.JoinedAt) 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 return true
} }