Skip to content

Commit

Permalink
fix: 🐛 fix format string
Browse files Browse the repository at this point in the history
  • Loading branch information
vidhanio committed Mar 1, 2022
1 parent 1592e6c commit c717e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command_verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (c *Checkpoint) verify(s *discordgo.Session, i *discordgo.InteractionCreate

successRespond(s, i, "You have been verified!")

err = c.session.GuildMemberNickname(i.GuildID, i.Member.User.ID, fmt.Sprintf("%s %b.", firstName, lastName[0]))
err = c.session.GuildMemberNickname(i.GuildID, i.Member.User.ID, fmt.Sprintf("%s %c.", firstName, lastName[0]))
if err != nil {
errorRespond(s, i, err)
}
Expand Down

0 comments on commit c717e53

Please sign in to comment.