Commit abed33d6 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix missing line break in subgroups command.

parent 99a97ebc
...@@ -1590,7 +1590,7 @@ func handleClientMessage(c *webClient, m clientMessage) error { ...@@ -1590,7 +1590,7 @@ func handleClientMessage(c *webClient, m clientMessage) error {
if sg.Clients > 1 { if sg.Clients > 1 {
plural = "s" plural = "s"
} }
s = s + fmt.Sprintf("%v (%v client%v)", s = s + fmt.Sprintf("%v (%v client%v)\n",
sg.Name, sg.Clients, plural) sg.Name, sg.Clients, plural)
} }
c.write(clientMessage{ c.write(clientMessage{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment