Fix unsplash usage detection
This commit is contained in:
parent
2356f23f03
commit
20281a6113
1 changed files with 3 additions and 1 deletions
|
@ -52,7 +52,9 @@ func unsplash(broker *tg.Broker, update tg.APIMessage) {
|
|||
text = *(update.ReplyTo.Text)
|
||||
user = update.ReplyTo.User
|
||||
} else {
|
||||
text = strings.TrimSpace(strings.Replace(*(update.Text), "/unsplash", "", 1))
|
||||
if strings.Index(text, " ") > 0 {
|
||||
text = strings.TrimSpace(strings.SplitN(*(update.Text), " ", 2)[1])
|
||||
}
|
||||
}
|
||||
|
||||
author := user.FirstName
|
||||
|
|
Reference in a new issue