aboutsummaryrefslogtreecommitdiff
path: root/telegram/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'telegram/commands.go')
-rw-r--r--telegram/commands.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/telegram/commands.go b/telegram/commands.go
index 102a2c4..606e28d 100644
--- a/telegram/commands.go
+++ b/telegram/commands.go
@@ -141,8 +141,8 @@ func (c *Client) ProcessChatCommand(cmdline string) (string, bool) {
cmd, _ := parseCommand(cmdline)
switch cmd {
case "help":
- return helpString(helpTypeChat), false
+ return helpString(helpTypeChat), true
}
- return "", true
+ return "", false
}