Client is now a pointer

bot-api-6.1
Raul Santos 2015-07-28 11:18:49 +02:00
parent 8249dd6a93
commit fc8cb6e039
1 changed files with 6 additions and 6 deletions

4
bot.go
View File

@ -9,7 +9,7 @@ type BotAPI struct {
Debug bool `json:"debug"`
Self User `json:"-"`
Updates chan Update `json:"-"`
Client http.Client `json:"-"`
Client *http.Client `json:"-"`
}
// NewBotAPI creates a new BotAPI instance.
@ -21,7 +21,7 @@ func NewBotAPI(token string, client *http.Client) (*BotAPI, error) {
bot := &BotAPI{
Token: token,
Client: *client,
Client: client,
}
self, err := bot.GetMe()