mirror of
https://github.com/tucnak/telebot
synced 2024-11-11 01:10:39 +00:00
fix lint errors in current code
This commit is contained in:
parent
07aeab1abb
commit
97e78127ad
8
bot.go
8
bot.go
@ -26,9 +26,9 @@ func NewBot(pref Settings) (*Bot, error) {
|
||||
}
|
||||
|
||||
bot := &Bot{
|
||||
Token: pref.Token,
|
||||
Updates: make(chan Update, pref.Updates),
|
||||
Poller: pref.Poller,
|
||||
Token: pref.Token,
|
||||
Updates: make(chan Update, pref.Updates),
|
||||
Poller: pref.Poller,
|
||||
|
||||
handlers: make(map[string]interface{}),
|
||||
stop: make(chan struct{}),
|
||||
@ -847,7 +847,7 @@ func (b *Bot) StopLiveLocation(message Editable, options ...interface{}) (*Messa
|
||||
|
||||
params := map[string]string{
|
||||
"chat_id": fmt.Sprintf("%d", chatID),
|
||||
"message_id": fmt.Sprintf("%d", messageID),
|
||||
"message_id": messageID,
|
||||
}
|
||||
|
||||
sendOpts := extractOptions(options)
|
||||
|
Loading…
Reference in New Issue
Block a user