1
0
mirror of synced 2024-11-22 12:56:06 +03:00

fixed error return value (#32)

This commit is contained in:
DeziderMesko 2017-07-31 21:24:49 +02:00 committed by Harrison Shoebridge
parent 7b303129b9
commit 5d938afef2

View File

@ -50,9 +50,10 @@ func checkFacebookError(r io.Reader) error {
err = json.NewDecoder(r).Decode(&qr) err = json.NewDecoder(r).Decode(&qr)
if qr.Error != nil { if qr.Error != nil {
err = fmt.Errorf("Facebook error : %s", qr.Error.Message) err = fmt.Errorf("Facebook error : %s", qr.Error.Message)
return err
} }
return err return nil
} }
// Response is used for responding to events with messages. // Response is used for responding to events with messages.
@ -151,9 +152,7 @@ func (r *Response) AttachmentData(dataType AttachmentType, filename string, file
return err return err
} }
var res bytes.Buffer return checkFacebookError(resp.Body)
res.ReadFrom(resp.Body)
return nil
} }
// ButtonTemplate sends a message with the main contents being button elements // ButtonTemplate sends a message with the main contents being button elements