Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Robi9 committed Oct 11, 2024
1 parent 148bf69 commit be202ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/telegram/telegram.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ func downloadFileToBytes(fileURL string) ([]byte, error) {

resp, err := utils.MakeHTTPRequest(req)
if err != nil {
return nil, fmt.Errorf("erro ao baixar o arquivo: %v", err)
return nil, fmt.Errorf("error downloading file: %v", err)
}

return resp.Body, nil
Expand Down

0 comments on commit be202ac

Please sign in to comment.