diff options
Diffstat (limited to 'server')
| -rw-r--r-- | server/channel/command.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/channel/command.go b/server/channel/command.go index 2454042..7b2f7b0 100644 --- a/server/channel/command.go +++ b/server/channel/command.go @@ -26,6 +26,11 @@ func (c *Channel) SendRequest(r session.Request) { r.Reply(proto.Fail{"bad-reply", "", nil}.Cmd()) return } + case "me": + if v != "yes" { + r.ReplyInvalid() + return + } default: r.ReplyInvalid() return |
