Many tests added. Small fixes

This commit is contained in:
Gleb Sinyavsky 2015-11-20 20:26:12 +03:00
parent e16094f76a
commit a192540b8c
4 changed files with 134 additions and 1 deletions

View file

@ -165,6 +165,7 @@ type ForwardConfig struct {
func (config ForwardConfig) Values() (url.Values, error) {
v, _ := config.BaseChat.Values()
v.Add("from_chat_id", strconv.Itoa(config.FromChatID))
v.Add("message_id", strconv.Itoa(config.MessageID))
return v, nil
}