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 {
if sg.Clients > 1 {
plural = "s"
}
s = s + fmt.Sprintf("%v (%v client%v)",
s = s + fmt.Sprintf("%v (%v client%v)\n",
sg.Name, sg.Clients, plural)
}
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