From fc8cb6e0398c8801c799ebe0a09d26e87ae6f6ce Mon Sep 17 00:00:00 2001 From: Raul Santos Date: Tue, 28 Jul 2015 11:18:49 +0200 Subject: [PATCH] Client is now a pointer --- bot.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bot.go b/bot.go index e0fc732..3d8bf94 100644 --- a/bot.go +++ b/bot.go @@ -5,11 +5,11 @@ import "net/http" // BotAPI has methods for interacting with all of Telegram's Bot API endpoints. type BotAPI struct { - Token string `json:"token"` - Debug bool `json:"debug"` - Self User `json:"-"` - Updates chan Update `json:"-"` - Client http.Client `json:"-"` + Token string `json:"token"` + Debug bool `json:"debug"` + Self User `json:"-"` + Updates chan Update `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()