From 645721f97e7690246103a843ccb05e1002b55a84 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 30 Nov 2021 03:40:03 -0500 Subject: [PATCH] fix missing parenthesis in UBAN INFO --- irc/uban.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/uban.go b/irc/uban.go index 1b1c376f..8f0e646a 100644 --- a/irc/uban.go +++ b/irc/uban.go @@ -445,7 +445,7 @@ func ubanInfoNick(client *Client, target ubanTarget, rb *ResponseBuffer) { rb.Notice(fmt.Sprintf(client.t("Client %[1]s is unauthenticated and connected from %[2]s"), details.nick, ip.String())) sendIPBanWarning = true } else { - rb.Notice(fmt.Sprintf(client.t("Client %[1]s is logged into account %[2]s and has %[3]d active clients (see /NICKSERV CLIENTS LIST %[4]s for more info"), details.nick, details.accountName, len(mcl.Sessions()), details.nick)) + rb.Notice(fmt.Sprintf(client.t("Client %[1]s is logged into account %[2]s and has %[3]d active clients (see /NICKSERV CLIENTS LIST %[4]s for more info)"), details.nick, details.accountName, len(mcl.Sessions()), details.nick)) if !ip.IsLoopback() && len(sessions) == 1 { rb.Notice(fmt.Sprintf(client.t("Client %[1]s is associated with IP %[2]s"), details.nick, ip.String())) sendIPBanWarning = true