Browse Source

Fix Verification filename

master
Gregory Rudolph 4 years ago
parent
commit
2f5c3b6cf3
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 2
      commands.go

2
commands.go

@ -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
} }

Loading…
Cancel
Save