summaryrefslogtreecommitdiff
path: root/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'post.go')
-rw-r--r--post.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/post.go b/post.go
index ccdfb11..08c487d 100644
--- a/post.go
+++ b/post.go
@@ -28,7 +28,7 @@ func httpPost(url string, data []byte) ([]byte, error) {
resp, err := client.Do(req)
if err != nil {
log.Error(err)
- return nil, err
+ return []byte("client.Do(req) error"), err
}
defer resp.Body.Close()