add error try catch in the configs MessageConfig values method

bot-api-6.1
LeeMyeongJun 2016-11-30 21:41:10 +09:00
parent 0a57807db7
commit cbf597eaf6
1 changed files with 5 additions and 1 deletions

View File

@ -198,7 +198,11 @@ type MessageConfig struct {
// values returns a url.Values representation of MessageConfig.
func (config MessageConfig) values() (url.Values, error) {
v, _ := config.BaseChat.values()
v, err := config.BaseChat.values()
if err != nil {
data := url.Values{}
return data, err
}
v.Add("text", config.Text)
v.Add("disable_web_page_preview", strconv.FormatBool(config.DisableWebPagePreview))
if config.ParseMode != "" {