mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-12 15:17:16 +03:00
Merge pull request #376 from medinae/reply-to-user-with-symbol-fix
Fix ~ Reply to user with symbol returning Err user not found
This commit is contained in:
commit
c8bfc34704
5
host.go
5
host.go
@ -379,8 +379,7 @@ func (h *Host) InitCommands(c *chat.Commands) {
|
||||
return errors.New("no message to reply to")
|
||||
}
|
||||
|
||||
name := target.Name()
|
||||
_, found := h.GetUser(name)
|
||||
_, found := h.GetUser(target.ID())
|
||||
if !found {
|
||||
return errors.New("user not found")
|
||||
}
|
||||
@ -388,7 +387,7 @@ func (h *Host) InitCommands(c *chat.Commands) {
|
||||
m := message.NewPrivateMsg(strings.Join(args, " "), msg.From(), target)
|
||||
room.Send(&m)
|
||||
|
||||
txt := fmt.Sprintf("[Sent PM to %s]", name)
|
||||
txt := fmt.Sprintf("[Sent PM to %s]", target.Name())
|
||||
ms := message.NewSystemMsg(txt, msg.From())
|
||||
room.Send(ms)
|
||||
target.SetReplyTo(msg.From())
|
||||
|
Loading…
x
Reference in New Issue
Block a user