all repos — telegram-bot-api @ fde05dd128a5e2c022eb2236bfa1c99f6f8e1d82

Golang bindings for the Telegram Bot API

feat: add IsTextMention to MessageEntity
niuhuan niuhuancn@outlook.com
Fri, 12 Aug 2022 11:43:40 +0800
commit

fde05dd128a5e2c022eb2236bfa1c99f6f8e1d82

parent

537c005643adee10686fa7d9bb860dec33a535d4

1 files changed, 6 insertions(+), 0 deletions(-)

jump to
M types.gotypes.go

@@ -754,6 +754,12 @@ func (e MessageEntity) IsMention() bool {

return e.Type == "mention" } +// IsTextMention returns true if the type of the message entity is "text_mention" +// (At this time, the user field exists, and occurs when tagging a member without a username) +func (e MessageEntity) IsTextMention() bool { + return e.Type == "text_mention" +} + // IsHashtag returns true if the type of the message entity is "hashtag". func (e MessageEntity) IsHashtag() bool { return e.Type == "hashtag"