Fix typo in missing user error

This commit is contained in:
Storm Dragon
2026-05-09 12:56:31 -04:00
parent 564d8fc85c
commit f718385342
+1 -1
View File
@@ -1906,7 +1906,7 @@ func handleClientMessage(c *webClient, m clientMessage) error {
} }
t := g.GetClient(m.Dest) t := g.GetClient(m.Dest)
if t == nil { if t == nil {
return c.error(group.UserError("no suck user")) return c.error(group.UserError("no such user"))
} }
target, ok := t.(*webClient) target, ok := t.(*webClient)
if !ok { if !ok {