mirror of
https://github.com/jech/galene.git
synced 2024-11-09 02:05:59 +01:00
Fix missing line break in subgroups command.
This commit is contained in:
parent
99a97ebca7
commit
abed33d654
1 changed files with 1 additions and 1 deletions
|
@ -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{
|
||||
|
|
Loading…
Reference in a new issue