Replace bad file type error with constant

This commit is contained in:
Syfaro 2016-01-03 22:49:58 -06:00
parent 99262cf76c
commit 6c84cd1fbb
2 changed files with 7 additions and 1 deletions

2
bot.go
View file

@ -146,7 +146,7 @@ func (bot *BotAPI) UploadFile(endpoint string, params map[string]string, fieldna
ms.WriteReader(fieldname, f.Name, int64(len(data)), buf)
default:
return APIResponse{}, errors.New("bad file type")
return APIResponse{}, errors.New(ErrBadFileType)
}
method := fmt.Sprintf(APIEndpoint, bot.Token, endpoint)