Handle some ignored errors.

bot-api-6.1
Syfaro 2017-12-29 21:55:58 -06:00
parent c268ddc5b9
commit 9653a4aad4
1 changed files with 8 additions and 8 deletions

16
bot.go
View File

@ -217,9 +217,9 @@ func (bot *BotAPI) GetMe() (User, error) {
} }
var user User var user User
json.Unmarshal(resp.Result, &user) err = json.Unmarshal(resp.Result, &user)
return user, nil return user, err
} }
// IsMessageToMe returns true if message directed to this bot. // IsMessageToMe returns true if message directed to this bot.
@ -292,9 +292,9 @@ func (bot *BotAPI) GetUserProfilePhotos(config UserProfilePhotosConfig) (UserPro
} }
var profilePhotos UserProfilePhotos var profilePhotos UserProfilePhotos
json.Unmarshal(resp.Result, &profilePhotos) err = json.Unmarshal(resp.Result, &profilePhotos)
return profilePhotos, nil return profilePhotos, err
} }
// GetFile returns a File which can download a file from Telegram. // GetFile returns a File which can download a file from Telegram.
@ -310,9 +310,9 @@ func (bot *BotAPI) GetFile(config FileConfig) (File, error) {
} }
var file File var file File
json.Unmarshal(resp.Result, &file) err = json.Unmarshal(resp.Result, &file)
return file, nil return file, err
} }
// GetUpdates fetches updates. // GetUpdates fetches updates.
@ -340,9 +340,9 @@ func (bot *BotAPI) GetUpdates(config UpdateConfig) ([]Update, error) {
} }
var updates []Update var updates []Update
json.Unmarshal(resp.Result, &updates) err = json.Unmarshal(resp.Result, &updates)
return updates, nil return updates, err
} }
// GetWebhookInfo allows you to fetch information about a webhook and if // GetWebhookInfo allows you to fetch information about a webhook and if