Browse Source

fix missing parenthesis in UBAN INFO

tags/v2.9.0-rc1
Shivaram Lingamneni 2 years ago
parent
commit
645721f97e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      irc/uban.go

+ 1
- 1
irc/uban.go View File

@@ -445,7 +445,7 @@ func ubanInfoNick(client *Client, target ubanTarget, rb *ResponseBuffer) {
445 445
 			rb.Notice(fmt.Sprintf(client.t("Client %[1]s is unauthenticated and connected from %[2]s"), details.nick, ip.String()))
446 446
 			sendIPBanWarning = true
447 447
 		} else {
448
-			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))
448
+			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))
449 449
 			if !ip.IsLoopback() && len(sessions) == 1 {
450 450
 				rb.Notice(fmt.Sprintf(client.t("Client %[1]s is associated with IP %[2]s"), details.nick, ip.String()))
451 451
 				sendIPBanWarning = true

Loading…
Cancel
Save