From 4ba240c37d98ec36a995eeee32bed92c601b1c45 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Fri, 9 Oct 2020 10:54:09 -0400 Subject: [PATCH] go: fix some format strings --- connectors/discord/discord.go | 2 +- plugins/meme/meme.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/connectors/discord/discord.go b/connectors/discord/discord.go index a6f3446..19e8d55 100644 --- a/connectors/discord/discord.go +++ b/connectors/discord/discord.go @@ -55,7 +55,7 @@ func (d Discord) Send(kind bot.Kind, args ...interface{}) (string, error) { if err != nil { log.Error().Err(err).Msg("could not get original") } else { - msg = fmt.Sprintf("> %s\n%s", original, msg) + msg = fmt.Sprintf("> %v\n%s", original, msg) } return d.sendMessage(args[0].(string), msg, false, args...) case bot.Reaction: diff --git a/plugins/meme/meme.go b/plugins/meme/meme.go index 3d4c8ec..c8f4b1a 100644 --- a/plugins/meme/meme.go +++ b/plugins/meme/meme.go @@ -252,8 +252,8 @@ func (p *MemePlugin) bully(c bot.Connector, format, id string) image.Image { func (p *MemePlugin) sendMeme(c bot.Connector, channel, channelName, msgID string, from *user.User, text string) { parts := strings.SplitN(text, " ", 2) if len(parts) != 2 { - log.Debug().Msgf("Bad meme request: %s, %s", from, text) - p.bot.Send(c, bot.Message, channel, fmt.Sprintf("%s tried to send me a bad meme request.", from)) + log.Debug().Msgf("Bad meme request: %v, %v", from, text) + p.bot.Send(c, bot.Message, channel, fmt.Sprintf("%v tried to send me a bad meme request.", from.Name)) return } isCmd, message := bot.IsCmd(p.c, parts[1]) @@ -278,7 +278,7 @@ func (p *MemePlugin) sendMeme(c bot.Connector, channel, channelName, msgID strin id, w, h, err := p.genMeme(format, top, bottom, bullyImg) if err != nil { - msg := fmt.Sprintf("Hey %s, I couldn't download that image you asked for.", from) + msg := fmt.Sprintf("Hey %v, I couldn't download that image you asked for.", from.Name) p.bot.Send(c, bot.Message, channel, msg) return }