Fix printf formatting in error message

This commit is contained in:
Simon Ser 2021-10-12 17:32:32 +02:00
parent 5c20c4c0f4
commit 6e8b6fa153
1 changed files with 1 additions and 1 deletions

View File

@ -2203,7 +2203,7 @@ func (dc *downstreamConn) handleMessageRegistered(msg *irc.Message) error {
// TODO: support TARGETS in multi-upstream mode
targets, err := store.ListTargets(network, bounds[0], bounds[1], limit)
if err != nil {
dc.logger.Printf("failed fetching targets for chathistory: %v", target, err)
dc.logger.Printf("failed fetching targets for chathistory: %v", err)
return ircError{&irc.Message{
Command: "FAIL",
Params: []string{"CHATHISTORY", "MESSAGE_ERROR", subcommand, "Failed to retrieve targets"},