Add /join command

calls
bodqhrohro 4 years ago
parent b9c07b6f16
commit c5996f304c

@ -356,6 +356,18 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
gateway.SPFrom(strconv.FormatInt(chat.Id, 10)),
gateway.SPType("subscribe"),
)
// join https://t.me/publichat
case "join":
if len(args) < 1 {
return notEnoughArguments, true
}
_, err := c.client.JoinChatByInviteLink(&client.JoinChatByInviteLinkRequest{
InviteLink: args[0],
})
if err != nil {
return err.Error(), true
}
case "help":
return helpString(helpTypeChat), true
default:

Loading…
Cancel
Save